Improve upload form usability: clearer date and tag fields
This commit is contained in:
parent
7514be0c10
commit
ff3cfb9a66
7 changed files with 24 additions and 6 deletions
|
|
@ -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,
|
||||
|
|
@ -21,6 +22,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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue