diff options
author | ubq323 <ubq323@ubq323.website> | 2022-06-11 00:21:48 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2022-06-11 00:21:48 +0100 |
commit | 421e5d579a005214a7ff3f3305b76e8be8037694 (patch) | |
tree | ceef0183b0bfa0a3c61dbac6d4bcef83516c3a43 | |
parent | b2ac344c4bb4e2fed50a5e6925cdfef9c8cd041a (diff) |
make radio buttons inline instead of on multiple linesthread-filtering-2
-rw-r--r-- | apioforum/templates/view_forum.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apioforum/templates/view_forum.html b/apioforum/templates/view_forum.html index 4cc5f5d..b03d51a 100644 --- a/apioforum/templates/view_forum.html +++ b/apioforum/templates/view_forum.html @@ -105,7 +105,7 @@ you do not have permission to create threads in this forum <label for=tagfilter-none>don't</label> {% for the_tag in avail_tags %} - <br> + <input type="radio" id="tagfilter-{{the_tag.id}}" name="tagfilter" value="{{the_tag.id}}" {% if tagfilter_tag.id == the_tag.id %}checked{% endif %}> @@ -113,7 +113,7 @@ you do not have permission to create threads in this forum {{tag(the_tag)}} </label> {% endfor %} - <br><br> + <br> <input type="submit" value="apply"> |