mirror of
https://github.com/miniflux/v2.git
synced 2025-09-15 18:57:04 +00:00
Expose next_check_at
in the web ui and API
This commit is contained in:
parent
5dc44453ba
commit
23d2cfe0f9
22 changed files with 48 additions and 1 deletions
|
@ -25,6 +25,12 @@
|
|||
<li class="item-meta-info-checked-at">
|
||||
{{ t "page.feeds.last_check" }} <time datetime="{{ isodate .CheckedAt }}" title="{{ isodate .CheckedAt }}">{{ elapsed $.user.Timezone .CheckedAt }}</time>
|
||||
</li>
|
||||
{{ $nextCheckDuration := duration .NextCheckAt }}
|
||||
{{ if ne $nextCheckDuration "" }}
|
||||
<li class="item-meta-info-next-check-at">
|
||||
{{ t "page.feeds.next_check" }} <time datetime="{{ isodate .NextCheckAt }}" title="{{ isodate .NextCheckAt }}">{{ $nextCheckDuration }}</time>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<ul class="item-meta-icons">
|
||||
<li class="item-meta-icons-refresh">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue