aboutsummaryrefslogtreecommitdiff
path: root/app/views/__init__.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-07-28 17:26:28 +0100
committerrubenwardy <rw@rubenwardy.com>2018-07-28 17:26:28 +0100
commit514a24e2c41686e91df25970b2b624d767c94c18 (patch)
tree65ce40f5653d7e518f4dbb697b6891d8023cfdd2 /app/views/__init__.py
parent742a327cbbcd0f8cd19de337e51780f8478acbb1 (diff)
downloadcheatdb-514a24e2c41686e91df25970b2b624d767c94c18.tar.xz
Add license editor
Diffstat (limited to 'app/views/__init__.py')
-rw-r--r--app/views/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py
index 8695a4e..412c236 100644
--- a/app/views/__init__.py
+++ b/app/views/__init__.py
@@ -53,7 +53,8 @@ def home_page():
return render_template("index.html", new=new, popular=popular, count=count)
from . import users, githublogin, packages, meta, threads, api
-from . import sass, tasks, admin, notifications, tagseditor, thumbnails
+from . import tasks, admin, notifications, tagseditor, licenseseditor
+from . import sass, thumbnails
@menu.register_menu(app, ".help", "Help", order=19, endpoint_arguments_constructor=lambda: { 'path': 'help' })
@app.route('/<path:path>/')