diff options
| author | rubenwardy <rw@rubenwardy.com> | 2019-01-08 17:37:33 +0000 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2019-01-08 17:37:33 +0000 |
| commit | 9639cf04f1b54865884850d608f08b5df4afe169 (patch) | |
| tree | 871a03bc37826a760f44e60c50b68fac880c4eee /app/views/__init__.py | |
| parent | 9866e43b4b4c7ff5c2338e1ed681661496800db7 (diff) | |
| download | cheatdb-9639cf04f1b54865884850d608f08b5df4afe169.tar.xz | |
Improve views subfoldering
Diffstat (limited to 'app/views/__init__.py')
| -rw-r--r-- | app/views/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py index 7ca7620..303ed2a 100644 --- a/app/views/__init__.py +++ b/app/views/__init__.py @@ -56,9 +56,8 @@ def home_page(): return render_template("index.html", count=count, \ new=new, pop_mod=pop_mod, pop_txp=pop_txp, pop_gam=pop_gam) -from . import users, githublogin, packages, meta, threads, api -from . import tasks, admin, notifications, tagseditor, licenseseditor -from . import sass, thumbnails +from . import users, packages, meta, threads, api +from . import sass, thumbnails, tasks, admin @menu.register_menu(app, ".help", "Help", order=19, endpoint_arguments_constructor=lambda: { 'path': 'help' }) @app.route('/<path:path>/') |
