Add detail page for tags

This commit is contained in:
Alexandre Iooss 2021-09-23 11:05:04 +02:00
parent 7d700bea36
commit d59fb154b6
6 changed files with 48 additions and 2 deletions

View file

@ -19,7 +19,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
</p>
Si vous souhaitez qu'une photo soit supprimée, signalez le nous :
<a href="mailto:photos@crans.org?subject=[ABUS] Nouvelle requête" class="btn btn-warning btn-sm">Signaler un abus</a>
<a href="mailto:photos@crans.org?subject=[ABUS] Nouvelle requête" class="btn btn-dark btn-sm">Signaler un abus</a>
<h3>Dernières galeries</h3>
<div class="row mb-2">

View file

@ -23,9 +23,11 @@ from .views import IndexView
urlpatterns = [
path('', IndexView.as_view(), name='index'),
path('photologue/', include('photologue.urls', namespace='photologue')),
path('photologue_custom/', include('photologue_custom.urls')),
path('accounts/', include('django.contrib.auth.urls')),
path('i18n/', include('django.conf.urls.i18n')),
path('admin/', admin.site.urls),
path('admin/doc/', include('django.contrib.admindocs.urls')),
]
if settings.DEBUG: