14 lines
454 B
Python
14 lines
454 B
Python
|
|
from nicegui import ui
|
||
|
|
from data import database
|
||
|
|
from gui import gui_style
|
||
|
|
|
||
|
|
def setup_route():
|
||
|
|
@ui.page("/admin")
|
||
|
|
def admin_page():
|
||
|
|
gui_style.apply_design()
|
||
|
|
|
||
|
|
with ui.row().classes("w-full flex-1 p-4 gap-4 no-wrap overflow-hidden"):
|
||
|
|
with ui.card().classes("flex-1"):
|
||
|
|
ui.label(text="ATS Träger anpassen.")
|
||
|
|
with ui.card().classes("flex-1"):
|
||
|
|
ui.label(text="Einträge Löschen")
|