2018-09-21 18:53:29 -07:00
|
|
|
{{ define "title"}}{{ t "page.history.title" }} ({{ .total }}){{ end }}
|
2017-11-19 21:10:04 -08:00
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
2018-09-21 18:53:29 -07:00
|
|
|
<h1>{{ t "page.history.title" }} ({{ .total }})</h1>
|
2017-12-01 22:55:00 -08:00
|
|
|
{{ if .entries }}
|
2017-11-21 15:46:59 -08:00
|
|
|
<ul>
|
|
|
|
<li>
|
2019-07-17 21:29:00 -07:00
|
|
|
<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" }}">{{ t "menu.flush_history" }}</a>
|
2017-11-21 15:46:59 -08:00
|
|
|
</li>
|
2020-03-22 18:48:14 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route "sharedEntries" }}">{{ t "menu.shared_entries" }}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{{ else }}
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ route "sharedEntries" }}">{{ t "menu.shared_entries" }}</a>
|
|
|
|
</li>
|
2017-11-21 15:46:59 -08:00
|
|
|
</ul>
|
2017-12-01 22:55:00 -08:00
|
|
|
{{ end }}
|
2017-11-19 21:10:04 -08:00
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if not .entries }}
|
2018-09-21 18:53:29 -07:00
|
|
|
<p class="alert alert-info">{{ t "alert.no_history" }}</p>
|
2017-11-19 21:10:04 -08:00
|
|
|
{{ else }}
|
|
|
|
<div class="items">
|
|
|
|
{{ range .entries }}
|
2017-12-02 15:01:05 -08:00
|
|
|
<article class="item touch-item item-status-{{ .Status }}" data-id="{{ .ID }}">
|
2017-11-19 21:10:04 -08:00
|
|
|
<div class="item-header">
|
|
|
|
<span class="item-title">
|
|
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
2019-09-10 21:12:38 -07:00
|
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Feed.Title }}">
|
2017-11-19 21:10:04 -08:00
|
|
|
{{ end }}
|
|
|
|
<a href="{{ route "readEntry" "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 17:43:40 -07:00
|
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
2017-11-19 21:10:04 -08:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|