Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/achintyachaudhary/admin_favorite
Simple libraries to mark model as favorite for easy access in django admin
https://github.com/achintyachaudhary/admin_favorite
django django-admin django-templates favorite hacktoberfest
Last synced: 2 months ago
JSON representation
Simple libraries to mark model as favorite for easy access in django admin
- Host: GitHub
- URL: https://github.com/achintyachaudhary/admin_favorite
- Owner: achintyachaudhary
- License: mit
- Created: 2020-08-07T21:23:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-02T18:25:38.000Z (over 4 years ago)
- Last Synced: 2024-11-09T22:41:04.319Z (3 months ago)
- Topics: django, django-admin, django-templates, favorite, hacktoberfest
- Language: Python
- Homepage: https://admin-favorite.herokuapp.com/admin/
- Size: 143 KB
- Stars: 7
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![alt text](https://img.shields.io/apm/l/docker)
**Mark most usable app as favorite in django admin**
**Author :** Achintya Ranjan Chaudhary
**License :** MIT
**Documentation :** https://admin-favorite.readthedocs.io/en/stable/
**Demo :** https://admin-favorite.herokuapp.com/admin/ (username: admin | password: admin)
----
**Steps to add this library in your project**
**Step 1 :** Install library in your project by running command below
pip install admin-favorite**Step 2 :** Add app name in your INSTALLED_APPS, make sure this is above 'django.contrib.admin' in your project
'admin_favorite',**Step 3 :** Add the path in your django project urls.py file
path('', include('admin_favorite.urls'))**Step 4 :** migrate admin-favorite app to your project
python manage.py migrate