Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xi/django-model-stats

Display how often models and model fields are used in the database
https://github.com/xi/django-model-stats

Last synced: about 2 months ago
JSON representation

Display how often models and model fields are used in the database

Awesome Lists containing this project

README

        

# django-model-stats

Display how often models and model fields are used in the database.

## Installation

1. Add `'model_stats'` to your `INSTALLED_APPS`
2. Add `path('admin/stats/', include('model_stats.urls'))` to your
`urlpatterns`. Make sure it’s included *before* the `'admin/'` entry, so
that requests to `/admin/stats/` don’t get handled by the latter entry.

## Features

- Allows you to find models or fields that are rearly used
- No additional user tracking, only uses the data that is already available
- No external dependencies