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"),
|
2024-06-29 23:19:39 -05:00
|
|
|
path("topics/", views.get_all_classifications, name="classificationsview"),
|
|
|
|
path("schools/<int:school_id>/", views.get_all_by_school, name="schoolview"),
|
2024-06-29 23:41:33 -05:00
|
|
|
path("countries/<int:country_id>/", views.get_all_by_country, name="countryview"),
|
2024-06-19 05:41:13 -05:00
|
|
|
]
|