tj2023/notes/urls.py
Praneeth Bhandaru 58a60fbdb7 Styles Cleanup
2020-10-20 16:57:12 -04:00

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'),
]