9 lines
247 B
Python
9 lines
247 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("timeline", views.timeline, name="timeline"),
|
|
path("categories", views.categories, name="categories"),
|
|
path("category/<uuid>", views.category, name="category"),
|
|
]
|