38686-vm/core/urls.py
Flatlogic Bot d10151cf40 Ver 01
2026-02-22 12:26:15 +00:00

7 lines
182 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('attendance/log/', views.attendance_log, name='attendance_log'),
]