Skip to content

Commit

Permalink
fix(admin): update UserAdmin change_form_template path
Browse files Browse the repository at this point in the history
  • Loading branch information
elisa-a-v committed Dec 23, 2024
1 parent 13832c0 commit 89e6d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl/users/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, *args, **kwargs):
@admin.register(User)
class UserAdmin(admin.ModelAdmin, AdminTweaksMixin):
form = CustomUserChangeForm # optimize queryset for user_permissions field
change_form_template = "user_change_form.html"
change_form_template = "admin/user_change_form.html"
inlines = (
UserProfileInline,
DonationInline,
Expand Down

0 comments on commit 89e6d58

Please sign in to comment.