Add tooling for mass editing

This commit is contained in:
2022-02-14 15:14:00 +00:00
parent bbea47e8ec
commit 733ea69cc5
5 changed files with 136 additions and 134 deletions

View File

@@ -68,6 +68,7 @@ INSTALLED_APPS = (
'reversion',
'widget_tweaks',
'hcaptcha',
'massadmin',
)
MIDDLEWARE = (

View File

@@ -28,6 +28,7 @@ urlpatterns = [
path('', include('users.urls')),
path('admin/', include('massadmin.urls')),
path('admin/', admin.site.urls),
path("robots.txt", TemplateView.as_view(template_name="robots.txt", content_type="text/plain")),
]