Improve upload form usability: clearer date and tag fields

This commit is contained in:
krek0 2026-04-22 17:55:25 +02:00
parent d5996e00ea
commit f1f7cd91d4
7 changed files with 24 additions and 6 deletions

View file

@ -2,7 +2,8 @@
# Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path, re_path
from django.urls import path, re_path, include
from .views import (
GalleryArchiveIndexView,
@ -19,6 +20,7 @@ from .views import (
app_name = "photologue"
urlpatterns = [
path("select2/", include("django_select2.urls")),
path("tag/<slug:slug>/", TagDetail.as_view(), name="tag-detail"),
path("gallery/", GalleryArchiveIndexView.as_view(), name="pl-gallery-archive"),
re_path(