Skip to content
Snippets Groups Projects
Verified Commit 61dd8578 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove django-js-reverse

parent e988dfbe
No related branches found
No related tags found
1 merge request!808Resolve "Prepare for Django 4.0"
......@@ -130,7 +130,6 @@ INSTALLED_APPS = [
"material",
"ckeditor",
"ckeditor_uploader",
"django_js_reverse",
"colorfield",
"django_bleach",
"favicon",
......
......@@ -26,9 +26,6 @@
{% include_css "Roboto900" %}
<link rel="stylesheet" href="{% sass_src 'public/style.scss' %}">
{# Add JS URL resolver #}
<script src="{% url "js_reverse" %}" type="text/javascript"></script>
{# Add i18n names for calendar (for use in datepicker) #}
{# Passing the locale is not necessary for the scripts to work, but prevents caching issues #}
<script src="{% url "javascript-catalog" %}?locale={{ LANGUAGE_CODE }}" type="text/javascript"></script>
......
......@@ -26,9 +26,6 @@
{% include_css "Roboto700" %}
{% include_css "Roboto900" %}
{# Add JS URL resolver #}
<script src="{% url "js_reverse" %}" type="text/javascript"></script>
{# Add i18n names for calendar (for use in datepicker) #}
{# Passing the locale is not necessary for the scripts to work, but prevents caching issues #}
<script src="{% url "javascript-catalog" %}?locale={{ LANGUAGE_CODE }}" type="text/javascript"></script>
......
......@@ -8,7 +8,6 @@ from django.views.i18n import JavaScriptCatalog
import calendarweek.django
from ckeditor_uploader import views as ckeditor_uploader_views
from django_js_reverse.views import urls_js
from health_check.urls import urlpatterns as health_urls
from oauth2_provider.views import ConnectDiscoveryInfoView
from rules.contrib.views import permission_required
......@@ -155,7 +154,6 @@ urlpatterns = [
name="ckeditor_browse",
),
path("select2/", include("django_select2.urls")),
path("jsreverse.js", urls_js, name="js_reverse"),
path("calendarweek_i18n.js", calendarweek.django.i18n_js, name="calendarweek_i18n_js"),
path("gettext.js", JavaScriptCatalog.as_view(), name="javascript-catalog"),
path(
......
......@@ -80,7 +80,6 @@ django-filter = "^2.2.0"
django-templated-email = "^3.0.0"
html2text = "^2020.0.0"
django-ckeditor = "^6.0.0"
django-js-reverse = "^0.9.1"
calendarweek = "^0.5.0"
Celery = {version="^5.2", extras=["django", "redis"]}
django-celery-results = "^2.0.1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment