Arabic Django user management app with abstract user, permissions, and activity logging
Project description
Micro Users - Arabic Django User Management App
Arabic lightweight, reusable Django app providing user management with abstract user, permissions, localization, and activity logging.
Requirements
- Must be installed on a fresh database.
- Python 3.11+
- Django 5.1+
- django-crispy-forms 2.4+
- django-tables2 2.7+
- django-filter 24.3+
- pillow 11.0+
- babel 2.1+
Features
- Custom AbstractUser model
- User permissions system
- Activity logging (login/logout, CRUD tracking)
- Localization support
- Admin interface integration
- CRUD views and templates
- Filtering and tabulation
Installation
pip install git+https://github.com/debeski/micro-users.git
# OR local
pip install micro-users
Configuration
- Add to
INSTALLED_APPS:
INSTALLED_APPS = [
'users', # Preferably on top
'django.contrib.admin',
'django.contrib.auth',
...
]
- Set custom user model in settings.py:
AUTH_USER_MODEL = 'users.CustomUser'
- Include URLs in your main project folder
urls.py:
urlpatterns = [
...
path('manage/', include('users.urls')),
]
- Run migrations:
python manage.py migrate users
Structure
users/
├── models.py # User model, permissions, activity logs
├── views.py # CRUD operations
├── urls.py # URL routing
├── admin.py # Admin integration
├── templates/ # HTML templates
└── migrations/ # Database migrations
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
micro_users-1.1.0.tar.gz
(17.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file micro_users-1.1.0.tar.gz.
File metadata
- Download URL: micro_users-1.1.0.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8dd230e11d9b8d12c14bb9982bd74de48da335e6e4a7a1ca0cb388c5c3d2a24
|
|
| MD5 |
f5fa9cb58470637deabcb6519d056a12
|
|
| BLAKE2b-256 |
0f619c77b7d9c9c0d08eda3b2424e2e8e1984c8b098c8abdc483692a797435f2
|
File details
Details for the file micro_users-1.1.0-py3-none-any.whl.
File metadata
- Download URL: micro_users-1.1.0-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70a9303876222c8e609e063facff4b2df0789d602754c96d5cc4597c65ff3799
|
|
| MD5 |
a23a4e9a23afab22b75d0c9bd6101b06
|
|
| BLAKE2b-256 |
d369c2b1e3bb0981469fdb33e8803bd991f7c01e0201f81fb232e3b11587907d
|