Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/20tab/twentytab-inspectmodel
A django app based on django-inspect-model that implements a user interface to inspect all models in your appplications
https://github.com/20tab/twentytab-inspectmodel
Last synced: 21 days ago
JSON representation
A django app based on django-inspect-model that implements a user interface to inspect all models in your appplications
- Host: GitHub
- URL: https://github.com/20tab/twentytab-inspectmodel
- Owner: 20tab
- License: mit
- Created: 2014-02-11T11:08:38.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-14T08:26:57.000Z (over 10 years ago)
- Last Synced: 2024-10-15T23:48:40.506Z (2 months ago)
- Language: Python
- Size: 289 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
twentytab-inspectmodel
======================A django app based on django-inspect-model that implements a user interface to inspect all models in your applications.
You can find django-inspect-model documentation here: https://github.com/magopian/django-inspect-model
## Installation
Use the following command: pip install twentytab-inspectmodel
## Configuration
- settings.py
```py
INSTALLED_APPS = {
...,
'inspectmodel',
...
}
```- urls.py
```py
urlpatterns = patterns('',
... ,
(r'', include('inspectmodel.urls')),
...
)```
- Static files
Run collectstatic command or map static directory.
To use the application you need to follow the link "http://myapplication_url/admin/inspect/browse/"