Skip to content

Commit

Permalink
docs(README): Update django and python compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Oct 12, 2022
1 parent 872ea3e commit 938f251
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ django-nested-admin

**django-nested-admin** is a project that makes it possible to nest
admin inlines (that is, to define inlines on InlineModelAdmin classes).
It is compatible with Django 2.2+ and Python 3.5+ and works with or
It is compatible with Django 3.2+ and Python 3.7+ and works with or
without Grappelli. When Grappelli is not installed it allows
Grappelli-like drag-and-drop functionality.

Expand Down Expand Up @@ -44,18 +44,11 @@ you will also need to add to include ``nested_admin.urls`` in your urlpatterns:

.. code-block:: python
# Django 2+
urlpatterns = [
# ...
path('_nested_admin/', include('nested_admin.urls')),
]
# Django < 2
urlpatterns = [
# ...
url(r'^_nested_admin/', include('nested_admin.urls')),
]
Example Usage
=============

Expand Down

0 comments on commit 938f251

Please sign in to comment.