X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=templates%2Fcondition.html;h=dfdf6ef9ce376f8c231e4b33388102d6eb51d16c;hb=HEAD;hp=00aeedb6762f2d304b8784f116bce795ba350418;hpb=12be63c6ef58282cb6b7d5b7bc2eabe8946a1bfc;p=plomtask diff --git a/templates/condition.html b/templates/condition.html index 00aeedb..7142363 100644 --- a/templates/condition.html +++ b/templates/condition.html @@ -1,31 +1,65 @@ -{% extends 'base.html' %} +{% extends '_base.html' %} +{% import '_macros.html' as macros %} {% block content %} -

condition

+

+{% if is_new %} +add NEW condition +{% else %} +edit condition of ID {{condition.id_}} +{% endif %} +

- +
- + - - - + - + + + + + + + + + + + + + + + +
title{% if condition.id_ %} [history]{% endif %}
is active
description{% if condition.id_ %} [history]{% endif %}
enables +{% for process in enabled_processes %} +{{process.title.newest|e}}
+{% endfor %} +
disables +{% for process in disabled_processes %} +{{process.title.newest|e}}
+{% endfor %} +
enabled by +{% for process in enabling_processes %} +{{process.title.newest|e}}
+{% endfor %} +
disabled by +{% for process in disabling_processes %} +{{process.title.newest|e}}
+{% endfor %} +
- -
- -
+ +{{ macros.edit_buttons() }} {% endblock %}