diff options
author | 2018-05-23 19:03:11 +0200 | |
---|---|---|
committer | 2018-05-23 19:03:11 +0200 | |
commit | d0f2863a072f7a36329619c48dafc1253db586a8 (patch) | |
tree | b8fb38da1a83f054e9c440f763ca0914ee7c450e /pysite | |
parent | update vagrant script [ci skip] (diff) | |
parent | Removed "Hacking-Coding" from the partners list. (diff) |
Merge branch 'master' of github.com:discord-python/site
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/main/about/channels.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pysite/views/main/about/channels.py b/pysite/views/main/about/channels.py new file mode 100644 index 00000000..2e5496f9 --- /dev/null +++ b/pysite/views/main/about/channels.py @@ -0,0 +1,7 @@ +from pysite.base_route import TemplateView + + +class ChannelsView(TemplateView): + path = "/about/channels" + name = "about.channels" + template = "main/about/channels.html" |