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')