Add the ability to quickly delete a couple of stuff

This commit is contained in:
2020-01-23 20:01:33 +01:00
parent c16819dab7
commit 9c88a2b5cf
5 changed files with 37 additions and 6 deletions

View File

@@ -3,13 +3,17 @@ from lib.snabbdom import h
from model.tags import TAGS
from browser import document
def modal_template(content, title, msg):
def modal_template(content, title, msg, delete_msg=None):
reset = message.msg(message.ModalNotOkClose())
footer = []
if msg is not None:
footer.append(h("a#modal-ok.button", {"on": {"click": message.msg(msg)}}, "OK"))
footer.append(h("label.button.dangerous", {"on": {"click": reset}}, "Cancel"))
if delete_msg is not None:
footer.append(h("label.button.warning.modal-delete", {"on": {"click": message.msg(delete_msg)}}, "🗑"))
return [
h("header", {}, [