django-model-stats

Display how often models and model fields are used in the database
git clone https://git.ce9e.org/django-model-stats.git

commit
fa71b94ce486f5310340774edfa195d46e3be090
parent
a28cee95fa9ff3d93ae3107784f9e93234d847df
Author
Tobias Bengfort <bengfort@mpib-berlin.mpg.de>
Date
2021-11-03 11:40
add installation instructions

Diffstat

M README.md 9 ++++++++-

1 files changed, 8 insertions, 1 deletions


diff --git a/README.md b/README.md

@@ -1,3 +1,10 @@
    1     1 # django-model-stats
    2     2 
    3    -1 Display how often models and model fields are used in the database
   -1     3 Display how often models and model fields are used in the database.
   -1     4 
   -1     5 ## Installation
   -1     6 
   -1     7 1.  Add `'model_stats'` to your `INSTALLED_APPS`
   -1     8 2.  Add `path('admin/stats/', include('model_stats.urls'))` to your
   -1     9     `urlpatterns`. Make sure it’s included *before* the `'admin/'` entry, so
   -1    10     that requests to `/admin/stats/` don’t get handled by the latter entry.