micro-users 1.2.0__py3-none-any.whl → 1.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of micro-users might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: micro-users
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Arabic Django user management app with abstract user, permissions, and activity logging
5
5
  Home-page: https://github.com/debeski/micro-users
6
6
  Author: DeBeski
@@ -109,6 +109,7 @@ users/
109
109
  ## Version History
110
110
 
111
111
  | Version | Changes |
112
+ |----------|---------|
112
113
  | v1.0.0 | Initial release as pip package |
113
114
  | v1.0.1 | Fixed a couple of new issues as a pip package |
114
115
  | v1.0.2 | Fixed the readme and building files |
@@ -117,4 +118,4 @@ users/
117
118
  | v1.1.0 | OK, finally a working seamless micro-users app |
118
119
  | v1.1.1 | Fixed a bug where a staff member can edit the admin details |
119
120
  | v1.2.0 | Added User Details view with specific user activity log |
120
- | v
121
+ | v1.2.1 | Fixed a minot import bug |
@@ -7,7 +7,7 @@ users/models.py,sha256=KX_6LoiNJN6PCTFOuuGp5so4CNn5pAh1Vpaigv4fKk4,2060
7
7
  users/signals.py,sha256=5Kd3KyfPT6740rvwZj4vy1yXsmjVhmaQ__RB8p5R5aE,1336
8
8
  users/tables.py,sha256=ZW8_TR6Y3DwchS7Q8DGVdJX01fjIDZfaqoZo0XpZnyU,1920
9
9
  users/urls.py,sha256=FwQ9GVOBRQ4iXQ9UyLFI0aEAga0d5qL_miPNpmFPA-Q,1022
10
- users/views.py,sha256=HOl3pHr3M28s3pHkyGjCgRbiOwqSSRkbkazzpcMBofw,8074
10
+ users/views.py,sha256=mruC7kf0_KMiNVxOwZNMyt5pUidu7U3RyIgYHDEFJ_4,8113
11
11
  users/migrations/0001_initial.py,sha256=lx9sSKS-lxHhI6gelVH52NOkwqEMJ32TvOJUn9zaOXM,4709
12
12
  users/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  users/templates/user_activity_log.html,sha256=S_FDN6vVLz_mB826yjeU9vtVGtzk7E_LKBmQIeYtdkQ,611
@@ -18,8 +18,8 @@ users/templates/users/profile_edit.html,sha256=sgO3h9ffVK1vnDNl4E6l5x3xfam3FTQl6
18
18
  users/templates/users/user_actions.html,sha256=oJedI5NElf-bXFBdeuQVNgx2enbwRsJSowBv5i6PFUE,1625
19
19
  users/templates/users/user_detail.html,sha256=jU6GIKlXEwnASDL_yosc6V46SjSwIDAgaRn0_iDK50U,1688
20
20
  users/templates/users/user_form.html,sha256=jcyI7OQZOY4ue4DajPtfjAt2SmAYO5ZgHNOqTp2-FO0,1352
21
- micro_users-1.2.0.dist-info/LICENSE,sha256=Fco89ULLSSxKkC2KKnx57SaT0R7WOkZfuk8IYcGiN50,1063
22
- micro_users-1.2.0.dist-info/METADATA,sha256=FjI3CzRhLRwETEGtpsxs56AN3M5KSAXbI9EMrvY5ho0,3362
23
- micro_users-1.2.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
24
- micro_users-1.2.0.dist-info/top_level.txt,sha256=tWT24ZcWau2wrlbpU_h3mP2jRukyLaVYiyHBuOezpLQ,6
25
- micro_users-1.2.0.dist-info/RECORD,,
21
+ micro_users-1.2.1.dist-info/LICENSE,sha256=Fco89ULLSSxKkC2KKnx57SaT0R7WOkZfuk8IYcGiN50,1063
22
+ micro_users-1.2.1.dist-info/METADATA,sha256=Q__3FA_yfJm1I4WY9gLGBeVv8-N7L4fj6tUaLRWGhLE,3421
23
+ micro_users-1.2.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
24
+ micro_users-1.2.1.dist-info/top_level.txt,sha256=tWT24ZcWau2wrlbpU_h3mP2jRukyLaVYiyHBuOezpLQ,6
25
+ micro_users-1.2.1.dist-info/RECORD,,
users/views.py CHANGED
@@ -7,8 +7,9 @@ from django.contrib.auth.decorators import login_required, user_passes_test
7
7
  from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
8
8
  from django.http import JsonResponse
9
9
  from django.shortcuts import render, redirect, get_object_or_404
10
- from django_tables2 import RequestConfig, SingleTableView, DetailView
10
+ from django_tables2 import RequestConfig, SingleTableView
11
11
  from django_filters.views import FilterView
12
+ from django.views.generic.detail import DetailView
12
13
 
13
14
  # Project imports
14
15
  #################