From 5f2fff229d8a248bcdcce94fd7eb4bbe5e0166fd Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Sun, 22 Jun 2025 15:14:50 +0200 Subject: [PATCH] remove reverse --- recipes/urls.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/recipes/urls.py b/recipes/urls.py index f71a39e2a..8ff13ed45 100644 --- a/recipes/urls.py +++ b/recipes/urls.py @@ -21,7 +21,6 @@ from django.contrib import admin from django.urls import include, path, re_path from django.views.i18n import JavaScriptCatalog from django.views.static import serve -from django_js_reverse import views as reverse_views urlpatterns = [ path('admin/', admin.site.urls), @@ -42,7 +41,6 @@ if settings.ENABLE_METRICS: if settings.GUNICORN_MEDIA or settings.DEBUG: urlpatterns += re_path(r'^media/(?P.*)$', serve, {'document_root': settings.MEDIA_ROOT}), - urlpatterns += re_path(r'^jsreverse.json$', reverse_views.urls_js, name='js_reverse'), for p in settings.PLUGINS: try: