feeds.html 828 B

12345678910111213141516171819202122232425262728
  1. {{ define "title"}}{{ t "page.feeds.title" }} ({{ .total }}){{ end }}
  2. {{ define "content"}}
  3. <section class="page-header">
  4. <h1>{{ t "page.feeds.title" }} ({{ .total }})</h1>
  5. <ul>
  6. <li>
  7. <a href="{{ route "addSubscription" }}">{{ t "menu.add_feed" }}</a>
  8. </li>
  9. <li>
  10. <a href="{{ route "export" }}">{{ t "menu.export" }}</a>
  11. </li>
  12. <li>
  13. <a href="{{ route "import" }}">{{ t "menu.import" }}</a>
  14. </li>
  15. <li>
  16. <a href="{{ route "refreshAllFeeds" }}">{{ t "menu.refresh_all_feeds" }}</a>
  17. </li>
  18. </ul>
  19. </section>
  20. {{ if not .feeds }}
  21. <p class="alert">{{ t "alert.no_feed" }}</p>
  22. {{ else }}
  23. {{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }}
  24. {{ end }}
  25. {{ end }}