mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-04 16:55:45 +03:00
wip - load ansible settings from VARS and not from ansible.cfg
This commit is contained in:
parent
50395caec7
commit
aa5377e6d7
9 changed files with 43 additions and 30 deletions
|
@ -1,10 +1,10 @@
|
|||
from nicegui import ui
|
||||
from utils import get_project_root
|
||||
import os
|
||||
|
||||
|
||||
def content() -> None:
|
||||
project_root = str(get_project_root())
|
||||
project_root = os.environ['NICEGUI_DIR']
|
||||
ui.label("Work in progress...").classes("text-h6")
|
||||
ui.image(project_root + "/nicegui/pages/assets/work-in-progress.png").classes(
|
||||
ui.image(project_root + "/pages/assets/work-in-progress.png").classes(
|
||||
"w-[200%]"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue