2017-11-20 00:10:04 -05:00
|
|
|
{{ define "title"}}{{ .feed.Title }} ({{ .total }}){{ end }}
|
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
|
|
|
<h1>{{ .feed.Title }} ({{ .total }})</h1>
|
|
|
|
<ul>
|
2018-09-08 21:40:23 -04:00
|
|
|
{{ if .entries }}
|
2017-11-20 00:10:04 -05:00
|
|
|
<li>
|
2019-07-17 20:44:32 -04:00
|
|
|
<a href="#"
|
2019-07-18 00:07:29 -04:00
|
|
|
data-action="markPageAsRead"
|
2019-07-17 20:44:32 -04:00
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}"
|
2019-07-18 00:07:29 -04:00
|
|
|
data-show-only-unread="{{ if .showOnlyUnreadEntries }}1{{ end }}">{{ t "menu.mark_page_as_read" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
2018-09-08 21:40:23 -04:00
|
|
|
{{ end }}
|
2018-12-14 03:54:25 -05:00
|
|
|
{{ if .showOnlyUnreadEntries }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ route "feedEntriesAll" "feedID" .feed.ID }}">{{ t "menu.show_all_entries" }}</a>
|
|
|
|
</li>
|
|
|
|
{{ else }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ route "feedEntries" "feedID" .feed.ID }}">{{ t "menu.show_only_unread_entries" }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
2017-11-20 00:10:04 -05:00
|
|
|
<li>
|
2018-09-21 21:53:29 -04:00
|
|
|
<a href="{{ route "refreshFeed" "feedID" .feed.ID }}">{{ t "menu.refresh_feed" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
|
|
|
<li>
|
2018-09-21 21:53:29 -04:00
|
|
|
<a href="{{ route "editFeed" "feedID" .feed.ID }}">{{ t "menu.edit_feed" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
2018-10-13 18:43:09 -04:00
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-confirm="true"
|
|
|
|
data-action="remove-feed"
|
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}"
|
|
|
|
data-url="{{ route "removeFeed" "feedID" .feed.ID }}"
|
|
|
|
data-redirect-url="{{ route "feeds" }}">{{ t "action.remove_feed" }}</a>
|
|
|
|
</li>
|
2017-11-20 00:10:04 -05:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if ne .feed.ParsingErrorCount 0 }}
|
|
|
|
<div class="alert alert-error">
|
2018-09-21 21:53:29 -04:00
|
|
|
<h3>{{ t "alert.feed_error" }}</h3>
|
2018-01-04 21:32:36 -05:00
|
|
|
<p>{{ t .feed.ParsingErrorMsg }}</p>
|
2017-11-20 00:10:04 -05:00
|
|
|
</div>
|
2019-04-03 00:17:01 -04:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if not .entries }}
|
2019-01-06 15:23:51 -05:00
|
|
|
{{ if .showOnlyUnreadEntries }}
|
|
|
|
<p class="alert">{{ t "alert.no_unread_entry" }}</p>
|
|
|
|
{{ else }}
|
|
|
|
<p class="alert">{{ t "alert.no_feed_entry" }}</p>
|
|
|
|
{{ end }}
|
2017-11-20 00:10:04 -05:00
|
|
|
{{ else }}
|
|
|
|
<div class="items">
|
|
|
|
{{ range .entries }}
|
2017-12-02 18:01:05 -05:00
|
|
|
<article class="item touch-item item-status-{{ .Status }}" data-id="{{ .ID }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
<div class="item-header">
|
|
|
|
<span class="item-title">
|
|
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
2019-09-11 00:12:38 -04:00
|
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Feed.Title }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
{{ end }}
|
|
|
|
<a href="{{ route "feedEntry" "feedID" .Feed.ID "entryID" .ID }}">{{ .Title }}</a>
|
|
|
|
</span>
|
|
|
|
<span class="category"><a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}">{{ .Feed.Category.Title }}</a></span>
|
|
|
|
</div>
|
2018-04-29 20:43:40 -04:00
|
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
2017-11-20 00:10:04 -05:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-09-08 21:40:23 -04:00
|
|
|
<section class="page-footer">
|
|
|
|
{{ if .entries }}
|
|
|
|
<ul>
|
|
|
|
<li>
|
2019-07-17 20:44:32 -04:00
|
|
|
<a href="#"
|
2019-07-18 00:07:29 -04:00
|
|
|
data-action="markPageAsRead"
|
2019-07-17 20:44:32 -04:00
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}"
|
2019-07-18 00:07:29 -04:00
|
|
|
data-show-only-unread="{{ if .showOnlyUnreadEntries }}1{{ end }}">{{ t "menu.mark_page_as_read" }}</a>
|
2018-09-08 21:40:23 -04:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2017-11-20 00:10:04 -05:00
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|