add urlpatterns /statistik and /country?urlaub

This commit is contained in:
koksnuss 2020-04-21 23:05:42 +02:00
parent c3400de90c
commit 927ba9262c

View File

@ -25,4 +25,6 @@ from . import views
urlpatterns = [
path('', views.index, name='index'),
path('statistik', views.statistic, name='statistic'),
path('<str:country>', views.country, name='country'),
]