Move coffee scale to web2.0

This commit is contained in:
Jan Tuomi
2017-09-18 23:16:19 +03:00
parent 7bdd970845
commit 5da4b52bde
15 changed files with 432 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from django.conf.urls import url
from django.views.generic.base import RedirectView
from .views import coffee_view, cups_view
favicon_view = RedirectView.as_view(url='static/img/favicon.ico', permanent=True)
urlpatterns = [
# landing page
url(r'^$', coffee_view),
url(r'^cups', cups_view),
]