Files
blechreiz-website/website/urls.py
Martin Bauer 663185fd40 Port to new django version - not yet fully working
- location field makes problems
2019-01-05 11:27:15 +01:00

8 lines
116 B
Python

from django.conf.urls import url
from website.views import home_view
urlpatterns = [
url(r'$^', home_view),
]