Skip to content

Instantly share code, notes, and snippets.

@jag-k
Created April 11, 2021 13:26
Show Gist options
  • Save jag-k/0cb9060135b6d275a7bf738bed4bb3a0 to your computer and use it in GitHub Desktop.
Save jag-k/0cb9060135b6d275a7bf738bed4bb3a0 to your computer and use it in GitHub Desktop.
ADMIN_TAB = MenuTab(
"Админ-панель",
MenuGroup(
"Страницы",
MenuItem(
"Главная",
"main_page"
),
MenuItem(
"Шапка сайта",
"headers"
),
icon="file-alt",
expanded=True,
),
MenuGroup(
"Новости",
MenuItem(
"Создать новость",
"news/new"
),
MenuItem(
"Категории",
"news/category"
),
MenuItem(
"Все новости",
"news"
),
icon="newspaper",
expanded=True,
),
MenuGroup(
"Настройки",
MenuItem(
"Частые Вопросы",
"faq"
),
MenuItem(
"Соц. сети",
"socials"
),
MenuItem(
"SEO",
"meta"
),
MenuItem(
"Прочее",
"other"
),
icon="wrench",
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment