blob: 57abc94281e0bef4eb30083c264ff7b16189471d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from django.urls import path
from .views import HomeView, timeline
app_name = 'home'
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('timeline/', timeline, name="timeline"),
]
|