aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/resources/views/resources.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-30 17:43:13 +0200
committerGravatar ks129 <[email protected]>2020-10-30 17:43:13 +0200
commit3fa3854eb192466ca59acb577bfe135b53c2da11 (patch)
treeaf5aa98d8d521f21f25c45528c89941ac23e77aa /pydis_site/apps/resources/views/resources.py
parentCover fetching article GitHub information with tests (diff)
parentMerge pull request #395 from ks129/resources-home (diff)
Merge remote-tracking branch 'up/dewikification' into guides-app
Diffstat (limited to 'pydis_site/apps/resources/views/resources.py')
-rw-r--r--pydis_site/apps/resources/views/resources.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pydis_site/apps/resources/views/resources.py b/pydis_site/apps/resources/views/resources.py
new file mode 100644
index 00000000..e770954b
--- /dev/null
+++ b/pydis_site/apps/resources/views/resources.py
@@ -0,0 +1,7 @@
+from django.views.generic import TemplateView
+
+
+class ResourcesView(TemplateView):
+ """View for resources index page."""
+
+ template_name = "resources/resources.html"