21 lines
997 B
Python
21 lines
997 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
path("all/", views.all, name="all"),
|
|
path("stats/", views.stats, name="stats"),
|
|
path("legislation/<int:legislation_id>/", views.view_legislation, name="viewleg"),
|
|
path("conference/<int:conference_id>/", views.view_conference, name="viewconf"),
|
|
path("topics/<int:model_id>/", views.get_all_classified_by_id, name="LegislationClassification.detail"),
|
|
path("topics/", views.get_all_classifications, name="LegislationClassification"),
|
|
|
|
# these are named weirdly -- see models.py School and Country definitions
|
|
path("schools/<int:model_id>/", views.get_all_by_school, name="School.detail"),
|
|
path("countries/<int:model_id>/", views.get_all_by_country, name="Country.detail"),
|
|
path("schools/", views.get_all_schools, name="School"),
|
|
path("countries/", views.get_all_countries, name="Country"),
|
|
path("groups/", views.return_groups, name="Groups")
|
|
]
|