2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.history.title" }} ({{ .total }}){{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2024-01-25 07:22:18 +01:00
|
|
|
{{ define "header"}}
|
|
|
|
<header class="page-header" aria-labelledby="page-header-title">
|
|
|
|
<h1 id="page-header-title">
|
2024-01-23 03:42:10 +01:00
|
|
|
{{ t "page.history.title" }}
|
|
|
|
<span aria-hidden="true">({{ .total }})</span>
|
|
|
|
</h1>
|
|
|
|
<span class="sr-only">{{ t "page.history.total" }}: {{ .total }}</span>
|
|
|
|
<nav aria-label="{{ t "page.history.title" }} {{ t "menu.title" }}">
|
|
|
|
<ul>
|
|
|
|
{{ if .entries }}
|
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-confirm="true"
|
|
|
|
data-url="{{ route "flushHistory" }}"
|
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ icon "delete" }}{{ t "menu.flush_history" }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ route "sharedEntries" }}">{{ icon "share" }}{{ t "menu.shared_entries" }}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2024-01-25 07:22:18 +01:00
|
|
|
</header>
|
|
|
|
{{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2024-01-25 07:22:18 +01:00
|
|
|
{{ define "content"}}
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ if not .entries }}
|
2018-09-22 03:53:29 +02:00
|
|
|
<p class="alert alert-info">{{ t "alert.no_history" }}</p>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ else }}
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-top">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
<div class="items">
|
|
|
|
{{ range .entries }}
|
2023-02-07 05:46:42 +01:00
|
|
|
<article class="item entry-item {{ if $.user.EntrySwipe }}entry-swipe{{ end }} 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 }}
|
2023-06-06 03:33:03 +02:00
|
|
|
<a href="{{ route "readEntry" "entryID" .ID }}">{{ .Title }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</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>
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-bottom">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|