mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
Use the appropriate message if there are no unread entries
This commit is contained in:
parent
27e79a4693
commit
a86a7dce57
2 changed files with 11 additions and 3 deletions
|
@ -44,7 +44,11 @@
|
|||
<p>{{ t .feed.ParsingErrorMsg }}</p>
|
||||
</div>
|
||||
{{ else if not .entries }}
|
||||
<p class="alert">{{ t "alert.no_feed_entry" }}</p>
|
||||
{{ if .showOnlyUnreadEntries }}
|
||||
<p class="alert">{{ t "alert.no_unread_entry" }}</p>
|
||||
{{ else }}
|
||||
<p class="alert">{{ t "alert.no_feed_entry" }}</p>
|
||||
{{ end }}
|
||||
{{ else }}
|
||||
<div class="items">
|
||||
{{ range .entries }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue