Files

8 lines
179 B
Python
Raw Permalink Normal View History

2024-08-27 20:33:44 +02:00
from django.urls import re_path
from wagtail.images.views.serve import serve
urlpatterns = [
re_path(r"^([^/]*)/(\d*)/([^/]*)/[^/]*$", serve, name="wagtailimages_serve"),
]