diff options
| author | rubenwardy <rw@rubenwardy.com> | 2018-05-29 16:19:17 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2018-05-29 16:19:17 +0100 |
| commit | 6a13dca2d511bd790e718be34f8a66bfc4cb525e (patch) | |
| tree | 7b9fb5b55319c496b21c5ab0f6757cf8dea142bc /app/views/__init__.py | |
| parent | 048b604a75e6a62cbc257e7c1f2b783e88ba871f (diff) | |
| download | cheatdb-6a13dca2d511bd790e718be34f8a66bfc4cb525e.tar.xz | |
Add thumbnail support
Diffstat (limited to 'app/views/__init__.py')
| -rw-r--r-- | app/views/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py index c28ff56..21ed40d 100644 --- a/app/views/__init__.py +++ b/app/views/__init__.py @@ -51,7 +51,7 @@ def home_page(): packages = query.order_by(db.desc(Package.created_at)).limit(15).all() return render_template("index.html", packages=packages, count=count) -from . import users, githublogin, packages, sass, tasks, admin, notifications, tagseditor, meta +from . import users, githublogin, packages, sass, tasks, admin, notifications, tagseditor, meta, thumbnails @menu.register_menu(app, ".help", "Help", order=19, endpoint_arguments_constructor=lambda: { 'path': 'help' }) @app.route('/<path:path>/') |
