Update web/illustrations/urls.py

This commit is contained in:
Joshua Laymon 2025-09-06 02:52:21 +00:00
parent 322e6ec1f7
commit 097fe1bdf0

View File

@ -36,6 +36,7 @@ urlpatterns = [
path("announcements/dismiss/<int:pk>/", core_views.dismiss_announcement, name="dismiss_announcement"),
path("tools/clear-history/", core_views.clear_history, name="clear_history"),
path("tools/audit-log/", core_views.audit_log, name="audit_log"),
path('settings/theme/', views.set_theme, name='set_theme'),
# Export/Import/etc (keep what you use)
path("export/", core_views.export_csv, name="export_csv"),
@ -78,3 +79,4 @@ urlpatterns = [
name="offline",
),
]