diff options
author | 2020-10-30 17:43:13 +0200 | |
---|---|---|
committer | 2020-10-30 17:43:13 +0200 | |
commit | 3fa3854eb192466ca59acb577bfe135b53c2da11 (patch) | |
tree | af5aa98d8d521f21f25c45528c89941ac23e77aa /pydis_site/apps/resources/urls.py | |
parent | Cover fetching article GitHub information with tests (diff) | |
parent | Merge pull request #395 from ks129/resources-home (diff) |
Merge remote-tracking branch 'up/dewikification' into guides-app
Diffstat (limited to 'pydis_site/apps/resources/urls.py')
-rw-r--r-- | pydis_site/apps/resources/urls.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pydis_site/apps/resources/urls.py b/pydis_site/apps/resources/urls.py new file mode 100644 index 00000000..c91e306e --- /dev/null +++ b/pydis_site/apps/resources/urls.py @@ -0,0 +1,8 @@ +from django.urls import path + +from pydis_site.apps.resources import views + +app_name = "resources" +urlpatterns = [ + path("", views.ResourcesView.as_view(), name="index"), +] |