2018-09-22 03:53:29 +02:00
{{ define "title"}}{{ t "page.categories.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.categories.title" }} ({{ .total }})< / h1 >
2017-11-20 06:10:04 +01:00
< ul >
< li >
2018-09-22 03:53:29 +02:00
< a href = "{{ route " createCategory " } } " > {{ t "menu.create_category" }}< / a >
2017-11-20 06:10:04 +01:00
< / li >
< / ul >
< / section >
{{ if not .categories }}
2018-10-28 02:11:05 +02:00
< p class = "alert alert-error" > {{ t "alert.no_category" }}< / p >
2017-11-20 06:10:04 +01:00
{{ else }}
< div class = "items" >
{{ range .categories }}
< article class = "item" >
< div class = "item-header" >
< span class = "item-title" >
< a href = "{{ route " categoryEntries " " categoryID " . ID } } " > {{ .Title }}< / a >
< / span >
2019-11-18 04:44:12 +01:00
(< span title = "{{ if eq .FeedCount 0 }}{{ t " page . categories . no_feed " } } { { else } } { { plural " page . categories . feed_count " . FeedCount . FeedCount } } { { end } } " > {{ .FeedCount }}< / span > )
2017-11-20 06:10:04 +01:00
< / div >
< div class = "item-meta" >
2020-03-23 00:33:35 +01:00
< ul class = "item-meta-info" >
2017-11-20 06:10:04 +01:00
< li >
2020-06-15 04:00:41 +02:00
{{ if eq .FeedCount 0 }}{{ t "page.categories.no_feed" }}{{ else }}{{ plural "page.categories.feed_count" .FeedCount .FeedCount }}{{ end }}
< / li >
< / ul >
< ul class = "item-meta-icons" >
< li >
< a href = "{{ route " categoryEntries " " categoryID " . ID } } " > {{ template "icon_entries" }}< span class = "icon-label" > {{ t "page.categories.entries" }}< / span > < / a >
< / li >
< li >
< a href = "{{ route " categoryFeeds " " categoryID " . ID } } " > {{ template "icon_feeds" }}< span class = "icon-label" > {{ t "page.categories.feeds" }}< / span > < / a >
2017-11-20 06:10:04 +01:00
< / li >
< li >
2020-06-15 04:00:41 +02:00
< a href = "{{ route " editCategory " " categoryID " . ID } } " > {{ template "icon_edit" }}< span class = "icon-label" > {{ t "menu.edit_category" }}< / span > < / a >
2017-11-20 06:10:04 +01:00
< / li >
{{ if eq .FeedCount 0 }}
< li >
2017-11-21 23:44:47 +01:00
< a href = "#"
data-confirm="true"
2018-09-22 03:53:29 +02:00
data-label-question="{{ t "confirm.question" }}"
data-label-yes="{{ t "confirm.yes" }}"
data-label-no="{{ t "confirm.no" }}"
data-label-loading="{{ t "confirm.loading" }}"
2020-06-15 04:00:41 +02:00
data-url="{{ route "removeCategory" "categoryID" .ID }}">{{ template "icon_delete" }}< span class = "icon-label" > {{ t "action.remove" }}< / span > < / a >
2017-11-20 06:10:04 +01:00
< / li >
{{ end }}
< / ul >
< / div >
< / article >
{{ end }}
< / div >
{{ end }}
{{ end }}