Fix favicon

This commit is contained in:
Aarni Halinen
2018-09-10 21:08:37 +03:00
parent 8552bde245
commit 5b44d2e4c7
8 changed files with 15 additions and 14 deletions
-4
View File
@@ -1,11 +1,7 @@
from django.conf.urls import url
from django.conf import settings
from django.views.generic.base import RedirectView
from .views import coffee_view
favicon_view = RedirectView.as_view(url='static/img/favicon.ico', permanent=True)
urlpatterns = [
# landing page
url(r'^$', coffee_view),