diff options
author | 2018-05-29 16:47:52 +0100 | |
---|---|---|
committer | 2018-05-29 16:47:52 +0100 | |
commit | e9c85be566c7a340e99e1f9d6f1dfb8b0a94ca92 (patch) | |
tree | bb636fe01c9b2b3af98ac5f9d2273f8ddf3c851a /pysite | |
parent | Bump pytest from 3.5.1 to 3.6.0 (#78) (diff) |
Address input given in contrib channel, and add FAQ
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/main/info/faq.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pysite/views/main/info/faq.py b/pysite/views/main/info/faq.py new file mode 100644 index 00000000..8878e180 --- /dev/null +++ b/pysite/views/main/info/faq.py @@ -0,0 +1,7 @@ +from pysite.base_route import TemplateView + + +class IndexView(TemplateView): + path = "/info/faq" + name = "info.faq" + template = "main/info/faq.html" |