Add markdown support

This commit is contained in:
2022-04-09 23:02:22 +02:00
parent c1315332e3
commit 28d2f5a68e
10 changed files with 71 additions and 39 deletions

7
dcc/portal/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from portal.views import GetHome
urlpatterns = [
path("<int:page>", GetHome.as_view(), name='index_pagination'),
]