1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-24 23:39:37 +02:00

User profile viewing - need to add more to the details view

This commit is contained in:
Sean Morley 2024-09-08 00:56:52 -04:00
parent a70b1f2818
commit 7d228b302b
6 changed files with 135 additions and 2 deletions

View file

@ -22,8 +22,8 @@ urlpatterns = [
path('auth/change-email/', ChangeEmailView.as_view(), name='change_email'),
path('auth/is-registration-disabled/', IsRegistrationDisabled.as_view(), name='is_registration_disabled'),
path('auth/users', PublicUserListView.as_view(), name='public-user-list'),
path('auth/user/<uuid:user_id>', PublicUserDetailView.as_view(), name='public-user-detail'),
path('auth/users/', PublicUserListView.as_view(), name='public-user-list'),
path('auth/user/<uuid:user_id>/', PublicUserDetailView.as_view(), name='public-user-detail'),
path('csrf/', get_csrf_token, name='get_csrf_token'),
re_path(r'^$', TemplateView.as_view(