2024-06-19 05:41:13 -05:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("", views.index, name="index"),
|
2024-06-21 03:02:03 -05:00
|
|
|
path("all/", views.all, name="all"),
|
2024-06-21 22:54:34 -05:00
|
|
|
path("stats/", views.stats, name="stats"),
|
2024-06-19 05:41:13 -05:00
|
|
|
path("legislation/<int:legislation_id>/", views.view_legislation, name="viewleg"),
|
2024-06-21 22:42:19 -05:00
|
|
|
path("conference/<int:conference_id>/", views.view_conference, name="viewconf"),
|
2024-06-28 16:36:06 -05:00
|
|
|
path("topics/<int:classification_id>/", views.get_all_classified_by_id, name="classificationview"),
|
|
|
|
path("topics/", views.get_all_classifications, name="classificationview"),
|
2024-06-19 05:41:13 -05:00
|
|
|
]
|