This commit is contained in:
2022-06-11 11:29:15 +01:00
parent fcfde34c72
commit 85ced0cc20
21 changed files with 88 additions and 71 deletions

View File

@ -0,0 +1,10 @@
from flask import Blueprint
views = Blueprint(
name='common',
import_name=__name__,
template_folder='templates',
static_folder='static'
)
from . import privacy

View File

@ -0,0 +1,5 @@
from . import views
@views.route('/privacy/')
def _privacy():
return 'Privacy Policy'