aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/timeline/urls.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2024-07-18 22:30:15 +0200
committerGravatar GitHub <[email protected]>2024-07-18 22:30:15 +0200
commit9ac9ef90cc14e684fd40c534a36a430968d85e9b (patch)
treee859e884a287952210f2abd24562c956dd6375ec /pydis_site/apps/timeline/urls.py
parentMerge pull request #1365 from python-discord/more-frameworks (diff)
parentMerge branch 'main' into feat/timeline-from-yaml (diff)
Merge pull request #1293 from python-discord/feat/timeline-from-yaml
Markdown + YAML for the timeline
Diffstat (limited to 'pydis_site/apps/timeline/urls.py')
-rw-r--r--pydis_site/apps/timeline/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pydis_site/apps/timeline/urls.py b/pydis_site/apps/timeline/urls.py
new file mode 100644
index 00000000..e4f1d6c6
--- /dev/null
+++ b/pydis_site/apps/timeline/urls.py
@@ -0,0 +1,9 @@
+from django_distill import distill_path
+
+from .views import TimelineView
+
+app_name = "timeline"
+
+urlpatterns = [
+ distill_path("", TimelineView.as_view(), name="index"),
+]