Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/20tab/django-immortalmodel
A django model, manager and queryset implementing undeletable models
https://github.com/20tab/django-immortalmodel
Last synced: 21 days ago
JSON representation
A django model, manager and queryset implementing undeletable models
- Host: GitHub
- URL: https://github.com/20tab/django-immortalmodel
- Owner: 20tab
- License: mit
- Created: 2014-02-06T15:53:35.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-04-20T20:47:23.000Z (over 5 years ago)
- Last Synced: 2024-11-16T17:44:42.435Z (about 1 month ago)
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
django-immortalmodel
=======================A django model, manager and queryset implementing undeletable models
## Installation
Use the following command: pip install django-immortalmodel
## Usage
- models.py
```py
from immortalmodel.models import ImmortalModelclass MyEternalModel(ImmortalModel):
pass```
- admin.py
```py
from immortalmodel.admin import ImmortalAdminclass MyEternalModel(ImmortalAdmin):
pass```