From 9169fbafb2e07b33b2ca175c7ac4a9558280912c Mon Sep 17 00:00:00 2001 From: Dave Z Date: Sun, 26 Aug 2018 19:18:07 -0400 Subject: Show count of feeds with permanent errors in header menu Only for feeds that reach `maxParsingError` are counted (so transient errors do not trigger counter). --- template/common.go | 8 ++++++-- template/html/common/layout.html | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'template') diff --git a/template/common.go b/template/common.go index a252391..947252d 100644 --- a/template/common.go +++ b/template/common.go @@ -134,7 +134,11 @@ var templateCommonMap = map[string]string{ {{ t "History" }}
  • - {{ t "Feeds" }} + {{ t "Feeds" }} + {{ if gt .countErrorFeeds 0 }} + ({{ .countErrorFeeds }}) + {{ end }} +
  • {{ t "Categories" }} @@ -239,6 +243,6 @@ var templateCommonMap = map[string]string{ var templateCommonMapChecksums = map[string]string{ "entry_pagination": "756ef122f3ebc73754b5fc4304bf05e59da0ab4af030b2509ff4c9b4a74096ce", "item_meta": "2da78476f6c7fb8742c969ad1bfc20b7b61fddf97d79a77baf3cabda52f6fb49", - "layout": "952632cafa23e02e3ae74c33a6606e127ab7bff0b82a2aa848967da8966475a5", + "layout": "2491695e33a496c9bd902a2cb5bc3a6a540f98ac7c24591d503a77ba0f5f0ebe", "pagination": "b592d58ea9d6abf2dc0b158621404cbfaeea5413b1c8b8b9818725963096b196", } diff --git a/template/html/common/layout.html b/template/html/common/layout.html index 23464e6..b6a7b13 100644 --- a/template/html/common/layout.html +++ b/template/html/common/layout.html @@ -60,7 +60,11 @@ {{ t "History" }}
  • - {{ t "Feeds" }} + {{ t "Feeds" }} + {{ if gt .countErrorFeeds 0 }} + ({{ .countErrorFeeds }}) + {{ end }} +
  • {{ t "Categories" }} -- cgit v1.2.3