9 lines
234 B
Python
9 lines
234 B
Python
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', views.IndexView.as_view(), name='log_index'),
|
||
|
path('<slug:source>/<int:year>/<int:month>/<int:day>/', views.EntriesView.as_view(), name='log_day'),
|
||
|
]
|