home · contact · privacy
Slightly improve and re-organize Condition tests.
[plomtask] / templates / condition.html
index b20b5fe04c3520264a4e4864769889b46b7d9227..7142363b3f2e24b45ed2d250d2e4144bf8406ef0 100644 (file)
@@ -4,25 +4,28 @@
 
 
 {% block content %}
-<h3>{% if is_new %}NEW {% endif %}condition</h3>
+<h3>
+{% if is_new %}
+add NEW condition
+{% else %}
+edit condition of ID {{condition.id_}}
+{% endif %}
+</h3>
 <form action="condition?id={{condition.id_ or ''}}" method="POST">
-<table>
 
+<table class="edit_table">
 <tr>
 <th>title</th>
-<td><input name="title" value="{{condition.title.newest|e}}" />{% if condition.id_ %} [<a href="condition_titles?id={{condition.id_}}">history</a>]{% endif %}</td>
+<td><input name="title" type="text" value="{{condition.title.newest|e}}" />{% if condition.id_ %} [<a href="condition_titles?id={{condition.id_}}">history</a>]{% endif %}</td>
 <tr/>
-
 <tr>
 <th>is active</th>
 <td><input name="is_active" type="checkbox" {% if condition.is_active %}checked{% endif %} /></td>
 <tr/>
-
 <tr>
 <th>description</th>
 <td><textarea name="description">{{condition.description.newest|e}}</textarea>{% if condition.id_ %} [<a href="condition_descriptions?id={{condition.id_}}">history</a>]{% endif %}</td>
 <tr/>
-
 <tr>
 <th>enables</th>
 <td>
@@ -31,7 +34,6 @@
 {% endfor %}
 </td>
 </tr>
-
 <tr>
 <th>disables</th>
 <td>
@@ -40,7 +42,6 @@
 {% endfor %}
 </td>
 </tr>
-
 <tr>
 <th>enabled by</th>
 <td>
@@ -49,7 +50,6 @@
 {% endfor %}
 </td>
 </tr>
-
 <tr>
 <th>disabled by</th>
 <td>
@@ -58,8 +58,8 @@
 {% endfor %}
 </td>
 </tr>
-
 </table>
+
 {{ macros.edit_buttons() }}
 {% endblock %}