diff --git a/.gitignore b/.gitignore
index ecd815d0..5b6353bf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,6 +13,7 @@ dist
_build
.tags
celerybeat-schedule
+Pipfile*
pkgs/burp-ui-sql/burpui_sql/VERSION
pkgs/burp-ui-extra/burpui_extra/VERSION
pkgs/burp-ui-agent/burpui_agent
diff --git a/burpui/routes.py b/burpui/routes.py
index 44f01e04..57466ad8 100644
--- a/burpui/routes.py
+++ b/burpui/routes.py
@@ -151,14 +151,24 @@ def admin_authentication(user):
return render_template('admin/authentication.html', admin=True, authentication=True, user=user, backend=backend, ng_controller='AdminCtrl')
-@view.route('/admin')
+@view.route('/admin/authorizations')
@login_required
-def admin():
+def admin_authorizations():
# Only the admin can access this page
if not current_user.is_anonymous and not current_user.acl.is_admin() and \
not current_user.acl.is_moderator():
abort(403)
- return render_template('admin.html', admin=True, ng_controller='AdminCtrl')
+ return render_template('admin-authorizations.html', admin=True, authorizations=True, ng_controller='AdminCtrl')
+
+
+@view.route('/admin/authentications')
+@login_required
+def admin_authentications():
+ # Only the admin can access this page
+ if not current_user.is_anonymous and not current_user.acl.is_admin() and \
+ not current_user.acl.is_moderator():
+ abort(403)
+ return render_template('admin-authentications.html', admin=True, authentications=True, ng_controller='AdminCtrl')
@view.route('/me')
diff --git a/burpui/templates/admin.html b/burpui/templates/admin-authentications.html
similarity index 94%
rename from burpui/templates/admin.html
rename to burpui/templates/admin-authentications.html
index faa52f81..7bd9a759 100644
--- a/burpui/templates/admin.html
+++ b/burpui/templates/admin-authentications.html
@@ -35,11 +35,11 @@
-
-