Add terms and conditions and privacy statement

This commit is contained in:
2017-09-21 22:17:52 +02:00
parent ab41f3afcd
commit 13ed89c480
4 changed files with 283 additions and 3 deletions

View File

@@ -345,6 +345,16 @@ def billing():
store_user=store_user, groups=groups, title='billing')
@blueprint.route('/terms-and-conditions')
def terms_and_conditions():
return render_template('terms_and_conditions.html')
@blueprint.route('/privacy')
def privacy():
return render_template('privacy.html')
def setup_app(app):
global _homepage_context
cached = app.cache.cached(timeout=300)