diff options
author | Florian Klink <flokli@flokli.de> | 2019-11-27T12·01+0100 |
---|---|---|
committer | Florian Klink <flokli@flokli.de> | 2019-11-27T12·01+0100 |
commit | 089e551b725dea1b062e00118ee852b655d936cd (patch) | |
tree | b9b328165342b6d0ff69284fd3e175bb74f5056a | |
parent | d81ae74999a1f7b5f6ccdbb4c32aed9955634e39 (diff) |
tmpl: move #region-queue to heading
the series block will get reused, and we don't want the same ID to appear twice.
-rw-r--r-- | public/series.tmpl.html | 2 | ||||
-rw-r--r-- | public/submit-queue.tmpl.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/public/series.tmpl.html b/public/series.tmpl.html index 3a34f4c4a109..7e5ffd49c79a 100644 --- a/public/series.tmpl.html +++ b/public/series.tmpl.html @@ -1,5 +1,5 @@ {{ define "series" }} -<table class="table table-sm table-hover" id="region-queue"> +<table class="table table-sm table-hover"> <thead class="thead-light"> <tr> <th scope="col">Owner</th> diff --git a/public/submit-queue.tmpl.html b/public/submit-queue.tmpl.html index 6b91f59a010b..cc159d5cadf4 100644 --- a/public/submit-queue.tmpl.html +++ b/public/submit-queue.tmpl.html @@ -56,7 +56,7 @@ </tr> </tbody> </table> - <h2>Current Queue</h2> + <h2 id="region-queue">Current Queue</h2> {{ block "series" .series }}{{ end }} <h2 id="region-log">History</h2> |