Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/"