Jean7667 / RBM_APP

0 stars 1 forks source link

[Bug]creating and expert is always associated with the skills it is not created if the is a user tick box is active #15

Closed Jean7667 closed 4 months ago

Jean7667 commented 4 months ago

Fixed you can create an expert from Admin New user

create a user in 3 sections

add_fieldsets = (
    ('Authentification', {
        'classes': ('wide',),
        'fields': ('username', 'email', 'password1', 'password2'),
    }),
     ('Personal info', {
        'fields': ('first_name', 'last_name'),
    }),
     ('Role', {
        'fields': ('is_customer','is_expert'),
    }),

)