micro-users 1.2.0__tar.gz → 1.2.1__tar.gz
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.
- {micro_users-1.2.0 → micro_users-1.2.1}/PKG-INFO +3 -2
- {micro_users-1.2.0 → micro_users-1.2.1}/README.md +2 -1
- {micro_users-1.2.0 → micro_users-1.2.1}/micro_users.egg-info/PKG-INFO +3 -2
- {micro_users-1.2.0 → micro_users-1.2.1}/pyproject.toml +1 -1
- {micro_users-1.2.0 → micro_users-1.2.1}/setup.py +1 -1
- {micro_users-1.2.0 → micro_users-1.2.1}/users/views.py +2 -1
- {micro_users-1.2.0 → micro_users-1.2.1}/LICENSE +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/MANIFEST.in +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/micro_users.egg-info/SOURCES.txt +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/micro_users.egg-info/dependency_links.txt +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/micro_users.egg-info/requires.txt +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/micro_users.egg-info/top_level.txt +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/setup.cfg +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/__init__.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/admin.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/apps.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/filters.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/forms.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/migrations/0001_initial.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/migrations/__init__.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/models.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/signals.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/tables.py +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/registration/login.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/user_activity_log.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/manage_users.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/profile.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/profile_edit.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/user_actions.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/user_detail.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/templates/users/user_form.html +0 -0
- {micro_users-1.2.0 → micro_users-1.2.1}/users/urls.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: micro_users
|
|
3
|
-
Version: 1.2.
|
|
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
|
-
|
|
|
121
|
+
| v1.2.1 | Fixed a minot import bug |
|
|
@@ -78,6 +78,7 @@ users/
|
|
|
78
78
|
## Version History
|
|
79
79
|
|
|
80
80
|
| Version | Changes |
|
|
81
|
+
|----------|---------|
|
|
81
82
|
| v1.0.0 | Initial release as pip package |
|
|
82
83
|
| v1.0.1 | Fixed a couple of new issues as a pip package |
|
|
83
84
|
| v1.0.2 | Fixed the readme and building files |
|
|
@@ -86,4 +87,4 @@ users/
|
|
|
86
87
|
| v1.1.0 | OK, finally a working seamless micro-users app |
|
|
87
88
|
| v1.1.1 | Fixed a bug where a staff member can edit the admin details |
|
|
88
89
|
| v1.2.0 | Added User Details view with specific user activity log |
|
|
89
|
-
|
|
|
90
|
+
| v1.2.1 | Fixed a minot import bug |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: micro-users
|
|
3
|
-
Version: 1.2.
|
|
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
|
-
|
|
|
121
|
+
| v1.2.1 | Fixed a minot import bug |
|
|
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
|
|
|
8
8
|
|
|
9
9
|
[project]
|
|
10
10
|
name = "micro_users"
|
|
11
|
-
version = "1.2.
|
|
11
|
+
version = "1.2.1"
|
|
12
12
|
description = "Arabic Django user management app with abstract user, permissions, and activity logging"
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
requires-python = ">=3.11"
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="micro_users",
|
|
8
|
-
version="1.2.
|
|
8
|
+
version="1.2.1",
|
|
9
9
|
author="DeBeski",
|
|
10
10
|
author_email="debeski1@gmail.com",
|
|
11
11
|
description="Arabic django user management app with abstract user, permissions, and activity logging",
|
|
@@ -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
|
|
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
|
#################
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|