diff --git a/templates/admin/request.html b/templates/admin/request.html
index 1999fdf..f6bd995 100644
--- a/templates/admin/request.html
+++ b/templates/admin/request.html
@@ -110,6 +110,7 @@
margin-left:1.8rem;
}
.approved-box{font-size:1.2rem;font-weight:bold;color:#fbbf24;}
+ .status-row{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;}
.history-list{
margin:0;
padding:0;
@@ -143,7 +144,15 @@
← Dashboard
Request #{{ req.id }} — {{ req.name }}
-
Status: {{ statuses[req.status] }}
+
+
Status: {{ statuses[req.status] }}
+ {% if req.status != 'cancelled' %}
+
+ {% endif %}
+
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
@@ -197,6 +206,29 @@
{% endif %}
+
+
+
Revision History
+ {% if revision_history %}
+
+ {% for h in revision_history %}
+ -
+
Revision #{{ h.revision_count }} — {{ h.created_at }}
+ {% if h.old_song_a_path or h.old_song_b_path %}
+
Archived:
+ {% if h.old_song_a_path %}
A: {{ basename(h.old_song_a_path) }}{% endif %}
+ {% if h.old_song_b_path %}
B: {{ basename(h.old_song_b_path) }}{% endif %}
+ {% endif %}
+
+ {{ h.note or 'No note provided.' }}
+
+ {% endfor %}
+
+ {% else %}
+
No revisions recorded yet.
+ {% endif %}
+
+
Operator Notes
@@ -368,42 +400,6 @@
{% endif %}
-
-
-
-
Request Actions
- {% if req.status != 'cancelled' %}
-
- {% else %}
-
This request is cancelled.
- {% endif %}
-
-
-
-
-
Revision History
- {% if revision_history %}
-
- {% for h in revision_history %}
- -
-
Revision #{{ h.revision_count }} — {{ h.created_at }}
- {% if h.old_song_a_path or h.old_song_b_path %}
-
Archived:
- {% if h.old_song_a_path %}
A: {{ basename(h.old_song_a_path) }}{% endif %}
- {% if h.old_song_b_path %}
B: {{ basename(h.old_song_b_path) }}{% endif %}
- {% endif %}
-
- {{ h.note or 'No note provided.' }}
-
- {% endfor %}
-
- {% else %}
-
No revisions recorded yet.
- {% endif %}
-