15 lines
309 B
Python
15 lines
309 B
Python
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),
|
|
|
|
]
|