X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_free?a=blobdiff_plain;f=templates%2Fcondition.html;h=8deb71cbf4dac93d837fb3cd51c8fd3b6b4cce6d;hb=8b606f7c555c250f0d5ab8314aa95ce7efda07c7;hp=92f04eb9688c2aad9992d810778f3780fad8d542;hpb=fb317a554ed912736498a5b3917b40bb9bfd7489;p=plomtask diff --git a/templates/condition.html b/templates/condition.html index 92f04eb..8deb71c 100644 --- a/templates/condition.html +++ b/templates/condition.html @@ -1,16 +1,73 @@ -{% extends 'base.html' %} +{% extends '_base.html' %} +{% import '_macros.html' as macros %} + + + +{% block css %} +input[name="title"] { + width: 100em; +} +{% endblock %} + + {% block content %} -

condition

+

{% if is_new %}NEW {% endif %}condition

-title: -description: -is active: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -
- -
+ + + + +
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 %}