diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | serve.py | 2 | ||||
-rw-r--r-- | views/index.tpl | 4 | ||||
-rw-r--r-- | views/list_feeds.tpl | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -8,7 +8,7 @@ This project is not in a finished state, but the core functionality is present. TagRSS is copyright (c) 2023-present Arjun Satarkar \<me@arjunsatarkar.net\>. -TagRSS is licensed under the GNU Affero General Public License v3.0, which requires among other things that "[w]hen a modified version is used to provide a service over a network, the complete source code of the modified version must be made available."[^1] +TagRSS is licensed under the GNU Affero General Public License v3.0, which requires among other things that "\[w\]hen a modified version is used to provide a service over a network, the complete source code of the modified version must be made available."[^1] See `LICENSE.txt` in the root of this repository for the text of the license. @@ -83,7 +83,7 @@ def index(): if included_tags_str: included_tags = parse_space_separated_tags(included_tags_str) with core_lock: - total_pages: int = max(1, math.ceil(core.get_entry_count(included_feeds=included_feeds) / per_page)) + total_pages: int = max(1, math.ceil(core.get_entry_count(included_feeds=included_feeds, included_tags=included_tags) / per_page)) entries = core.get_entries(limit=per_page, offset=offset, included_feeds=included_feeds, included_tags=included_tags) return bottle.template( "index", diff --git a/views/index.tpl b/views/index.tpl index 52e997f..fd26295 100644 --- a/views/index.tpl +++ b/views/index.tpl @@ -62,7 +62,7 @@ </div> <div class="side-by-side-help-container"> <label>Included tags: - <input type="text" name="included_tags" value="{{included_tags_str}}"> + <input type="text" name="included_tags" value="{{included_tags_str if included_tags_str else ''}}"> </label> % include("tag_hover_help.tpl") </div> @@ -138,7 +138,7 @@ <input type="text" name="included_feeds" value="{{included_feeds_str}}" style="display: none;"> % end % if included_tags: - <input type="text" name="included_feeds" value="{{included_tags_str}}" style="display: none;"> + <input type="text" name="included_tags" value="{{included_tags_str}}" style="display: none;"> % end </form> % include("footer.tpl") diff --git a/views/list_feeds.tpl b/views/list_feeds.tpl index 3c60f06..d780789 100644 --- a/views/list_feeds.tpl +++ b/views/list_feeds.tpl @@ -42,4 +42,4 @@ </form> % include("footer.tpl") </body> -</html>
\ No newline at end of file +</html> |