aboutsummaryrefslogtreecommitdiff
path: root/views/index.tpl
diff options
context:
space:
mode:
authorArjun Satarkar <me@arjunsatarkar.net>2023-08-04 20:02:00 +0000
committerArjun Satarkar <me@arjunsatarkar.net>2023-08-04 20:03:29 +0000
commitb42091406ba4f4abe8591a793e2334d38613aaf5 (patch)
tree6b1e30d7a42cb41cff2ef50887b6010516152329 /views/index.tpl
parent8f5488436b90d85969abb8bdcbb0ecf14d8936bd (diff)
downloadtagrss-main.tar
tagrss-main.tar.gz
tagrss-main.zip
Make tag input nicer with JS (if enabled)HEADmain
Diffstat (limited to 'views/index.tpl')
-rw-r--r--views/index.tpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/views/index.tpl b/views/index.tpl
index 046d317..5009da2 100644
--- a/views/index.tpl
+++ b/views/index.tpl
@@ -47,6 +47,7 @@
}
</style>
<script src="/static/scripts/auto_refresh.js" defer></script>
+ <script src="/static/scripts/dynamic_input.js" defer></script>
</head>
<body>
<h1>TagRSS</h1>
@@ -64,8 +65,10 @@
<form>
<div class="side-by-side-help-container">
<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.")
+ <span>
+ <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.")
+ </span>
</div>
% include(
% "tag_input.tpl",