7 lines
179 B
Python
7 lines
179 B
Python
from django.urls import re_path
|
|
|
|
from wagtail.images.views.serve import serve
|
|
|
|
urlpatterns = [
|
|
re_path(r"^([^/]*)/(\d*)/([^/]*)/[^/]*$", serve, name="wagtailimages_serve"),
|
|
]
|