diff options
| author | rubenwardy <rw@rubenwardy.com> | 2019-11-15 23:51:42 +0000 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2019-11-15 23:51:42 +0000 |
| commit | 64f131ae27a7332245b5a4eb8e1e4879d7d99578 (patch) | |
| tree | a0b4101ca9c2132a072f1586c0df693583c91cf7 /app/templates/admin/list.html | |
| parent | 015abe5a2507ad02273bc89953016c386aae4457 (diff) | |
| download | cheatdb-64f131ae27a7332245b5a4eb8e1e4879d7d99578.tar.xz | |
Refactor endpoints to use blueprints instead
Diffstat (limited to 'app/templates/admin/list.html')
| -rw-r--r-- | app/templates/admin/list.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/templates/admin/list.html b/app/templates/admin/list.html index ddfa30c..1048a88 100644 --- a/app/templates/admin/list.html +++ b/app/templates/admin/list.html @@ -6,11 +6,11 @@ {% block content %} <ul> - <li><a href="{{ url_for('user_list_page') }}">User list</a></li> - <li><a href="{{ url_for('tag_list_page') }}">Tag Editor</a></li> - <li><a href="{{ url_for('license_list_page') }}">License Editor</a></li> - <li><a href="{{ url_for('version_list_page') }}">Version Editor</a></li> - <li><a href="{{ url_for('switch_user_page') }}">Sign in as another user</a></li> + <li><a href="{{ url_for('users.list_all') }}">User list</a></li> + <li><a href="{{ url_for('admin.tag_list') }}">Tag Editor</a></li> + <li><a href="{{ url_for('admin.license_list') }}">License Editor</a></li> + <li><a href="{{ url_for('admin.version_list') }}">Version Editor</a></li> + <li><a href="{{ url_for('admin.switch_user') }}">Sign in as another user</a></li> </ul> <div class="card my-4"> |
