Ajout manifest.json pour icônes raccourcis
This commit is contained in:
parent
161399d33d
commit
6d499815e6
8 changed files with 382 additions and 0 deletions
|
|
@ -1,10 +1,14 @@
|
|||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from django.views.decorators.cache import cache_page
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from beesgospel import views
|
||||
|
||||
urlpatterns = [
|
||||
path("manifest.json",
|
||||
cache_page(3600 * 24)(views.ManifestView.as_view()), name="manifest"
|
||||
),
|
||||
path("admin/", admin.site.urls),
|
||||
path("accounts/", include("django.contrib.auth.urls")),
|
||||
path("", views.HomeView.as_view(), name="home"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue