2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.unread.title" }} {{ if gt .countUnread 0 }}({{ .countUnread }}){{ end }} {{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
2018-09-22 03:53:29 +02:00
|
|
|
<h1>{{ t "page.unread.title" }} (<span class="unread-counter">{{ .countUnread }}</span>)</h1>
|
2017-12-02 07:55:00 +01:00
|
|
|
{{ if .entries }}
|
2017-11-20 06:10:04 +01:00
|
|
|
<ul>
|
|
|
|
<li>
|
2019-07-18 02:44:32 +02:00
|
|
|
<a href="#"
|
2019-07-18 06:07:29 +02:00
|
|
|
data-action="markPageAsRead"
|
2020-09-12 18:28:47 +02:00
|
|
|
data-show-only-unread="1"
|
2019-07-18 02:44:32 +02:00
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
2019-07-18 06:07:29 +02:00
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ t "menu.mark_page_as_read" }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
2018-01-05 03:11:15 +01:00
|
|
|
<li>
|
2019-07-18 06:52:45 +02:00
|
|
|
<a href="#"
|
|
|
|
data-confirm="true"
|
|
|
|
data-url="{{ route "markAllAsRead" }}"
|
|
|
|
data-redirect-url="{{ route "unread" }}"
|
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ t "menu.mark_all_as_read" }}</a>
|
2018-01-05 03:11:15 +01:00
|
|
|
</li>
|
2017-11-20 06:10:04 +01:00
|
|
|
</ul>
|
2017-12-02 07:55:00 +01:00
|
|
|
{{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if not .entries }}
|
2018-09-22 03:53:29 +02:00
|
|
|
<p class="alert">{{ t "alert.no_unread_entry" }}</p>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ else }}
|
|
|
|
<div class="items hide-read-items">
|
|
|
|
{{ range .entries }}
|
2017-12-03 00:01:05 +01:00
|
|
|
<article class="item touch-item item-status-{{ .Status }}" data-id="{{ .ID }}">
|
2020-06-25 06:46:37 +02:00
|
|
|
<div class="item-header" dir="auto">
|
2017-11-20 06:10:04 +01:00
|
|
|
<span class="item-title">
|
|
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
2019-09-11 06:12:38 +02:00
|
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Feed.Title }}">
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|
|
|
|
<a href="{{ route "unreadEntry" "entryID" .ID }}">{{ .Title }}</a>
|
|
|
|
</span>
|
|
|
|
<span class="category"><a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}">{{ .Feed.Category.Title }}</a></span>
|
|
|
|
</div>
|
2018-04-30 02:43:40 +02:00
|
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-09-09 03:40:23 +02:00
|
|
|
<section class="page-footer">
|
|
|
|
{{ if .entries }}
|
|
|
|
<ul>
|
|
|
|
<li>
|
2019-07-18 02:44:32 +02:00
|
|
|
<a href="#"
|
2019-07-18 06:07:29 +02:00
|
|
|
data-action="markPageAsRead"
|
2019-07-18 02:44:32 +02:00
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
2019-07-18 06:07:29 +02:00
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ t "menu.mark_page_as_read" }}</a>
|
2018-09-09 03:40:23 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|