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