mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
11 lines
272 B
Python
11 lines
272 B
Python
def init_main_menu():
|
|
"""Add custom items to main menu."""
|
|
from flask_menu import current_menu
|
|
|
|
current_menu.submenu("main").register(
|
|
id="amdmodel",
|
|
text="About AM-D-Model",
|
|
external_url="https://am-d-model.eu",
|
|
order=0,
|
|
)
|