Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
[
pylayout.HTML_TITLE,
pylayout.HTML_ALERT_README,
pylayout.HTML_ALERT_EOOS,
pylayout.HTML_ROW_BUTTON_UPLOAD,
pylayout.HTML_ROW_TABLE,
pylayout.HTML_ROW_BUTTON_VIZ,
Expand Down
17 changes: 17 additions & 0 deletions pylayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,23 @@

HTML_ALERT_README = pylayoutfunc.create_HTML_alert(ALERT_README, className=None)

ALERT_END_OF_ONLINE_SERVICE = dbc.Alert(
[
"Layanan online aplikasi fiakodev akan dihentikan pada November 2022. ",
"Baca ",
html.A(
"logs: layanan online aplikasi fiakodev akan dihentikan",
href="https://dev.fiako.engineering/logs/layanan-online-aplikasi-fiakodev",
target="_blank"
),
" untuk informasi lebih lengkap."
],
color="danger",
className="fw-bold"
)

HTML_ALERT_EOOS = pylayoutfunc.create_HTML_alert(ALERT_END_OF_ONLINE_SERVICE, className=None)

ALERT_SPONSOR = dbc.Alert(
[
"Terima kasih untuk ",
Expand Down