diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2023-08-04 00:19:49 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2023-08-04 00:19:49 +0000 |
commit | 92a42a2fc193c484c1d88b811d7735f448c8e9e0 (patch) | |
tree | 03f2183d9748c2848e2b78d68ef1e7288cae700d | |
parent | 5f9bc570696c6b8deb465d273bf539c92ad4afbf (diff) | |
download | tagrss-92a42a2fc193c484c1d88b811d7735f448c8e9e0.tar tagrss-92a42a2fc193c484c1d88b811d7735f448c8e9e0.tar.gz tagrss-92a42a2fc193c484c1d88b811d7735f448c8e9e0.zip |
Fix broken filtering layout on /
-rw-r--r-- | views/index.tpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/views/index.tpl b/views/index.tpl index 1851531..046d317 100644 --- a/views/index.tpl +++ b/views/index.tpl @@ -63,9 +63,8 @@ <summary>Filter</summary> <form> <div class="side-by-side-help-container"> - <label>Included feeds: - <input type="text" name="included_feeds" value="{{' '.join([str(feed_id) for feed_id in included_feeds]) if included_feeds else ''}}"> - </label> + <label for="included-feeds-input">Included feeds:</label> + <input type="text" name="included_feeds" value="{{' '.join([str(feed_id) for feed_id in included_feeds]) if included_feeds else ''}}" id="included-feeds-input"> % include("hover_help.tpl", text="Space-separated feed IDs.") </div> % include( |