diff options
| author | 2018-05-15 20:18:31 +0100 | |
|---|---|---|
| committer | 2018-05-15 20:18:31 +0100 | |
| commit | 0cf83b0e91c65df06997db27a9d371595667a5f8 (patch) | |
| tree | 088fd61796c973c3683c2620fa4131d9bd3c352e /pysite | |
| parent | Add snowflake index on oauth_data and use it for deletions (diff) | |
First draft of privacy page
Diffstat (limited to '')
| -rw-r--r-- | pysite/views/main/about/privacy.py | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/pysite/views/main/about/privacy.py b/pysite/views/main/about/privacy.py new file mode 100644 index 00000000..a08aa22b --- /dev/null +++ b/pysite/views/main/about/privacy.py @@ -0,0 +1,7 @@ +from pysite.base_route import TemplateView + + +class PrivacyView(TemplateView): +    path = "/about/privacy" +    name = "about.privacy" +    template = "main/about/privacy.html" | 
