2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.feeds.title" }} ({{ .total }}){{ 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.feeds.title" }} ({{ .total }})</h1>
|
2020-01-02 22:03:34 +01:00
|
|
|
{{ template "feed_menu" }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if not .feeds }}
|
2018-09-22 03:53:29 +02:00
|
|
|
<p class="alert">{{ t "alert.no_feed" }}</p>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ else }}
|
2019-11-18 04:44:12 +01:00
|
|
|
{{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }}
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|