{% extends 'base.html' %}
+{% block css %}
+input.btn-harmless {
+ color: green;
+}
+input.btn-dangerous {
+ color: red;
+}
+div.btn-to-right {
+ float: right;
+ text-align: right;
+}
+{% endblock %}
+
+
+
{% macro step_with_steps(step_id, step_node, indent) %}
<tr>
<td>
{% endif %}
{% endmacro %}
+
+
{% block content %}
<h3>process</h3>
<form action="process?id={{process.id_ or ''}}" method="POST">
<option value="{{candidate.id_}}">{{candidate.title.newest|e}}</option>
{% endfor %}
</datalist>
-<input type="submit" name="update" value="update" />
-<input type="submit" name="delete" value="delete" />
+<input class="btn-harmless" type="submit" name="update" value="update" />
+<div class="btn-to-right">
+<input class="btn-dangerous" type="submit" name="delete" value="delete" />
+</div>
</form>
<h4>step of</h4>
<ul>