arnecoomans / camping.cmns.nl

VKNT, a Vacation Management System, is a place to store your possible holiday locations. It is the ideal place to start making plans, sharing and noting down tips.
1 stars 1 forks source link

Editing a location raises error #321

Closed arnecoomans closed 1 hour ago

arnecoomans commented 2 hours ago

Fields status and user are required but not visible for non staff users

Solution; dynamically change fields based on user status

arnecoomans commented 2 hours ago

''' Get Form Add User field when staff ''' def get_form(self): ''' Add User field for staff ''' if self.request.user.is_staff == True: self.fields.append('status') form = super(EditImageMaster, self).get_form() return form