home · contact · privacy
Improve button layouts.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 28 Apr 2024 22:07:30 +0000 (00:07 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 28 Apr 2024 22:07:30 +0000 (00:07 +0200)
templates/base.html
templates/process.html

index 3408d676929c74b5dd4829fee3b0dd2710de7406..71c79b407c1580760796c0cb118867040392ef04 100644 (file)
@@ -8,6 +8,18 @@ body {
 ul {
   list-style-type: none;
 }
+input.btn-harmless {
+  color: green;
+}
+input.btn-dangerous {
+  color: red;
+}
+div.btn-to-right {
+  float: right;
+  text-align: right;
+}
+{% block css %}
+{% endblock %}
 </style>
 <body>
 <a href="processes">processes</a>
index 8c219c6233a748db6e73bb2a37ca0a86c113f7fb..8a50e15d16f541974c7c494248885898cffe0095 100644 (file)
@@ -1,5 +1,20 @@
 {% 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>
@@ -30,6 +45,8 @@ add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="
 {% endif %}
 {% endmacro %}
 
+
+
 {% block content %}
 <h3>process</h3>
 <form action="process?id={{process.id_ or ''}}" method="POST">
@@ -122,8 +139,10 @@ add step: <input name="new_top_step" list="step_candidates" autocomplete="off" /
 <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>