mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-10 23:30:17 -04:00
7 lines
200 B
Python
7 lines
200 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.meeting_overview, name='notes'),
|
|
path('meeting/<str:meeting_id>/', views.show_meeting, name='show_meetings'),
|
|
] |