mirror of
https://github.com/deunix-educ/Fail2banMqttActionBanishment.git
synced 2026-08-24 03:11:58 +02:00
12 lines
443 B
Python
12 lines
443 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
# Vue set_language (POST) utilisée par le sélecteur de langue de la
|
|
# sidebar (_sidebar_stats.html) — pose le cookie django_language, lu
|
|
# par LocaleMiddleware (config/settings/base.py) à chaque requête.
|
|
path('i18n/', include('django.conf.urls.i18n')),
|
|
path('', include('banevents.urls')),
|
|
]
|