diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-06 17:43:33 -0500 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-06 17:43:33 -0500 |
| commit | 62f8c5e35949e41ecf777c36736bae1caa007179 (patch) | |
| tree | 7c5ae9efb327d1eda46bf4da05ed239c2041cbc4 /app/dispatch/views.py | |
| parent | f5c84efd37085695732803b28d4a74cc05042e0e (diff) | |
| download | dispatch-tracker-62f8c5e35949e41ecf777c36736bae1caa007179.tar.gz dispatch-tracker-62f8c5e35949e41ecf777c36736bae1caa007179.tar.xz | |
Update the driver Detail page. Still need to fix the Identity Create function
Diffstat (limited to 'app/dispatch/views.py')
| -rw-r--r-- | app/dispatch/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/dispatch/views.py b/app/dispatch/views.py index 5a94775..f52c372 100644 --- a/app/dispatch/views.py +++ b/app/dispatch/views.py @@ -156,8 +156,8 @@ class DriverUpdate(UserPassesTestMixin, UpdateView): # fields = ['username', 'first_name','last_name','email','groups'] fields = [] - default_fields = ['username', 'first_name', 'last_name', 'email'] - superuser_fields = ['username', 'first_name', 'last_name', 'email', + default_fields = ['first_name', 'last_name', 'email'] + superuser_fields = ['first_name', 'last_name', 'email', 'is_active', 'is_superuser'] def set_fields(self, user): |
