Skip to content
Snippets Groups Projects
Commit 5051ac8d authored by jan.bednarik's avatar jan.bednarik
Browse files

tuning: Move admin template overrides into tuning app

parent d4c2b08d
No related branches found
No related tags found
1 merge request!20Tuning
Pipeline #626 passed
......@@ -30,9 +30,10 @@ jako přehled pluginů a rozšíření pro Wagtail.
├── senat_campaign = app na weby kandidátů na senátory
...
├── majak = Django projekt s konfigurací Majáku
├── shared = app se sdílenými static soubory a templaty
├── shared = app se sdílenými static soubory a templaty pro weby
├── calendar_utils = app s modelem a utilitami na iCal kalendáře
├── search = app pro fulltext search (default, asi se k ničemu nepoužívá)
├── tuning = app na tuning administračního rozhraní Majáku
└── users = app s custom user modelem a SSO, apod.
### Kalendáře
......
......@@ -2,7 +2,7 @@ from django.utils.safestring import mark_safe
from wagtail.core import hooks
class WelcomePanel:
class HelpPanel:
order = 1000
def render(self):
......@@ -19,4 +19,4 @@ class WelcomePanel:
@hooks.register("construct_homepage_panels")
def add_another_welcome_panel(request, panels):
panels.append(WelcomePanel())
panels.append(HelpPanel())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment