From f8a0df2ca28ca90c441c71c54e41fe275e0709eb Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 22 Nov 2023 15:05:05 +0100 Subject: [PATCH] change profile icon --- idhub/user/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idhub/user/views.py b/idhub/user/views.py index d833496..482b40e 100644 --- a/idhub/user/views.py +++ b/idhub/user/views.py @@ -38,7 +38,7 @@ class DashboardView(UserView, TemplateView): class ProfileView(MyProfile, UpdateView): template_name = "idhub/user/profile.html" subtitle = _('My personal data') - icon = 'bi bi-person' + icon = 'bi bi-person-gear' from_class = ProfileForm fields = ('first_name', 'last_name', 'email') success_url = reverse_lazy('idhub:user_profile')