From 24d2abdf00de53e3f877f28710b8c06587839f4a Mon Sep 17 00:00:00 2001 From: Will Barton Date: Wed, 20 Dec 2023 08:26:10 -0500 Subject: [PATCH] Update dependencies in README Co-authored-by: Andy Chosak --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 623b8b2..7a14f81 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Wagtail-TreeModelAdmin is an extension for Wagtail's [ModelAdmin](http://docs.wa - Python 3.8+ - Django 3.2 (LTS), 4.1 (current) - Wagtail 5.1+ +- [wagtail-modeladmin](https://github.com/wagtail-nest/wagtail-modeladmin) It should be compatible with all intermediate versions, as well. If you find that it is not, please [file an issue](https://github.com/cfpb/wagtail-treemodeladmin/issues/new). @@ -35,12 +36,12 @@ If you find that it is not, please [file an issue](https://github.com/cfpb/wagta pip install wagtail-treemodeladmin ``` -2. Add `treemodeladmin` (and `wagtail.contrib.modeladmin` if it's not already) as an installed app in your Django `settings.py`: +2. Add `treemodeladmin` (and `wagtail_modeladmin` if it's not already) as an installed app in your Django `settings.py`: ```python INSTALLED_APPS = ( ... - 'wagtail.contrib.modeladmin', + 'wagtail_modeladmin', 'treemodeladmin', ... )