bundesdata_web_app/app/speeches/urls.py

10 lines
324 B
Python
Raw Normal View History

2019-02-28 13:09:53 +00:00
from django.urls import path
from . import views
urlpatterns = [
path("reden/", views.speeches, name="Reden"),
path("liste-protokolle/", views.protocols, name="Protokoll-list"),
path("protokoll/<int:protocol_id>", views.protocol, name="Protokoll"),
path("rede/<str:speech_id>", views.speech, name="Rede")
]