First commit

This commit is contained in:
2026-07-20 11:05:07 +02:00
commit b592ab669f
159 changed files with 10294 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.urls import path
from . import views
app_name = 'banevents'
urlpatterns = [
path('', views.dashboard, name='dashboard'),
path('historique/', views.history, name='history'),
path('api/join/', views.join_node, name='join_node'),
path('communaute/', views.community_landing, name='community'),
]