mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:31:08 -05:00
10 lines
237 B
Python
10 lines
237 B
Python
from django.urls import path
|
|
from .views import HistoryTimelineView
|
|
|
|
app_name = 'history'
|
|
|
|
urlpatterns = [
|
|
path('timeline/<int:content_type_id>/<int:object_id>/',
|
|
HistoryTimelineView.as_view(),
|
|
name='timeline'),
|
|
] |