diff options
author | Andrew Godwin | 2022-12-16 16:38:52 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-16 16:38:52 -0700 |
commit | 45c6978bc397691b22db0360b16b19979eac7dce (patch) | |
tree | 8e22839cd8a7b685f1d4491762c5d56aa5960dee /takahe | |
parent | 1bcdff79e7e14b2166056d3b16531b32474c374b (diff) | |
download | takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.gz takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.bz2 takahe-45c6978bc397691b22db0360b16b19979eac7dce.zip |
User admin and LD schema fixes
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index 6bb239b..1e02622 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -96,10 +96,15 @@ urlpatterns = [ ), path( "admin/users/", - admin.Users.as_view(), + admin.UsersRoot.as_view(), name="admin_users", ), path( + "admin/users/<id>/", + admin.UserEdit.as_view(), + name="admin_user_edit", + ), + path( "admin/identities/", admin.Identities.as_view(), name="admin_identities", |