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