summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclsr <clsr@clsr.net>2016-11-15 21:23:33 +0100
committerclsr <clsr@clsr.net>2016-11-15 21:23:33 +0100
commit3f03d764367962597ac2b45ab5dc7b71f20aae62 (patch)
tree29f3fe26c14a6d8d482ad6923dbf6f8b58906933
parent1ac3fa992aee04984b9483b8f61990d1d06e2672 (diff)
downloadgomf-modpanel-web-3f03d764367962597ac2b45ab5dc7b71f20aae62.tar.gz
gomf-modpanel-web-3f03d764367962597ac2b45ab5dc7b71f20aae62.zip
Fix id tag in labels in panel.html
-rw-r--r--templates/panel.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/panel.html b/templates/panel.html
index 27095e6..c1c6f5b 100644
--- a/templates/panel.html
+++ b/templates/panel.html
@@ -30,7 +30,7 @@
<form action="delete" method="post">
<input type="hidden" name="id" value="{{.id}}" />
<input type="hidden" name="file" value="{{.hash}}" />
- <label for="reason-{{.id}}">Reason: </label><input type="text" name="reason" id="reason-{{.id}}" />
+ <label for="reason-{{.id}}">Reason: </label><input type="text" name="reason" id="reason-{{.hash}}" />
<button type="submit" name="type" value="file">Delete file</button>
<button type="submit" name="type" value="id">Delete ID</button>
</form>