home · contact · privacy
In /file view, move deletion checkbox out of danger zone.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 3 Dec 2024 03:34:58 +0000 (04:34 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 3 Dec 2024 03:34:58 +0000 (04:34 +0100)
src/templates/_base.tmpl
src/templates/file_data.tmpl
src/templates/playlist.tmpl

index 8839067e41fc2901488d3cac928fbf8c3fbe2eb8..3f9edf40b2134f9ec6d28a803c1e4e1ceb7881f8 100644 (file)
@@ -9,6 +9,9 @@
 </script>
 <style>
 body { background-color: #aaaa00; }
+table { width: 100%; }
+th { text-align: left; }
+td { vertical-align: top; }
 {% block css %}
 {% endblock %}
 </style>
index 15637f4220757d75ff82dce2788c7b4ae60de878..ceb6c2ac31a115bb7e93e36dc7d76ae74c3f41e1 100644 (file)
@@ -1,17 +1,25 @@
 {% extends '_base.tmpl' %}
 
 
+{% block css %}
+td { width: 100%; }
+td.flags { text-align: right; }
+{% endblock %}
+
+
 {% block body %}
 {{ macros.nav_head(page_names) }}
+<form action="/{{page_names.file}}/{{file.digest.b64}}" method="POST" />
 <table>
 <tr><th>path:</th><td>{{file.rel_path}}</td></tr>
 <tr><th>YouTube ID:</th><td><a href="/{{page_names.yt_result}}/{{file.yt_id}}">{{file.yt_id}}</a></tr>
 <tr><th>present:</th><td>{% if file.present %}<a href="/{{page_names.download}}/{{file.yt_id}}">yes</a>{% else %}no{% endif %}</td></tr>
-</table>
-<form action="/{{page_names.file}}/{{file.digest.b64}}" method="POST" />
+<tr><th>flags:</th><td class="flags">
 {% for flag_name in flag_names %}
 {{ flag_name }}: <input type="checkbox" name="{{flag_name}}" {% if file.is_flag_set(flag_name) %}checked {% endif %} /><br />
 {% endfor %}
+</td></tr>
+</table>
 <input type="submit" />
 </form>
 {% endblock %}
index 507d1c3d832209dc3984020889111564bc08ddc3..e82aff18270209f40d74da9c065107dac15c62d1 100644 (file)
@@ -29,10 +29,8 @@ window.onload = keep_updated;
 
 
 {% block css %}
-table { width: 100%; }
 #status { text-align: center; font-weight: bold; }
 th { text-align: center; }
-td { vertical-align: top; }
 td.history { width: 50%; }
 td.entry_buttons { width: 5em; }
 {% endblock %}