Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ pip install django-forms-workflows
```python
INSTALLED_APPS = [
# ...
'nested_admin',
'crispy_forms',
'crispy_bootstrap5',
'django_forms_workflows',
Expand All @@ -216,6 +217,7 @@ CRISPY_TEMPLATE_PACK = "bootstrap5"
```python
# urls.py
urlpatterns = [
re_path(r'^_nested_admin/', include('nested_admin.urls')),
path('forms/', include('django_forms_workflows.urls')),
]
```
Expand Down
2 changes: 2 additions & 0 deletions docs/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',

# Third-party apps
'nested_admin',
'crispy_forms',
'crispy_bootstrap5',

Expand Down Expand Up @@ -87,6 +88,7 @@ python manage.py migrate django_forms_workflows
from django.urls import path, include

urlpatterns = [
path('_nested_admin/', include('nested_admin.urls')),
path('admin/', admin.site.urls),
path('forms/', include('django_forms_workflows.urls')),
# ...
Expand Down
2 changes: 2 additions & 0 deletions docs/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',

# Required dependencies
'nested_admin',
'crispy_forms',
'crispy_bootstrap5',

Expand Down Expand Up @@ -84,6 +85,7 @@ from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path('_nested_admin/', include('nested_admin.urls')),
path('admin/', admin.site.urls),
path('forms/', include('django_forms_workflows.urls')),
]
Expand Down
1 change: 1 addition & 0 deletions example_project/example/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"django.contrib.messages",
"django.contrib.staticfiles",
# Required dependencies
"nested_admin",
"crispy_forms",
"crispy_bootstrap5",
# Django Form Workflows
Expand Down
3 changes: 2 additions & 1 deletion example_project/example/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
from django.conf import settings
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import include, path
from django.urls import include, path, re_path

from .views import home

urlpatterns = [
path("", home, name="home"),
re_path(r'^_nested_admin/', include('nested_admin.urls')),
path("admin/", admin.site.urls),
path("accounts/", include("django.contrib.auth.urls")),
path("forms/", include("django_forms_workflows.urls")),
Expand Down