2018-03-25 03:38:35 +00:00
|
|
|
<% content_for "header" do %>
|
2018-12-20 21:32:09 +00:00
|
|
|
<title><%= translate(locale, "Subscriptions") %> - Invidious</title>
|
2019-03-07 19:34:33 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed/private?token=<%= token %>" />
|
2018-03-25 03:38:35 +00:00
|
|
|
<% end %>
|
|
|
|
|
2019-02-24 17:51:33 +00:00
|
|
|
<%= rendered "components/feed_menu" %>
|
|
|
|
|
2018-07-29 14:47:32 +00:00
|
|
|
<div class="pure-g h-box">
|
2018-12-20 17:05:54 +00:00
|
|
|
<div class="pure-u-1-3">
|
2018-07-20 16:19:49 +00:00
|
|
|
<h3>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/subscription_manager"><%= translate(locale, "Manage subscriptions") %></a>
|
2018-07-20 16:19:49 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2019-05-02 01:03:39 +00:00
|
|
|
<div class="pure-u-1-3" style="text-align:center">
|
2018-12-20 17:05:54 +00:00
|
|
|
<h3>
|
2018-12-20 21:32:09 +00:00
|
|
|
<a href="/feed/history"><%= translate(locale, "Watch history") %></a>
|
2018-12-20 17:05:54 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2019-05-02 01:03:39 +00:00
|
|
|
<div class="pure-u-1-3" style="text-align:right">
|
2018-07-20 16:19:49 +00:00
|
|
|
<h3>
|
2019-03-07 19:34:33 +00:00
|
|
|
<a href="/feed/private?token=<%= token %>"><i class="icon ion-logo-rss"></i></a>
|
2018-07-20 16:19:49 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-06 00:48:55 +00:00
|
|
|
|
2019-05-02 01:03:39 +00:00
|
|
|
<center>
|
|
|
|
<%= translate(locale, "`x` unseen notifications", "#{notifications.size}") %>
|
|
|
|
</center>
|
2018-08-30 21:52:29 +00:00
|
|
|
|
|
|
|
<% if !notifications.empty? %>
|
2019-05-02 01:03:39 +00:00
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
2018-08-30 21:52:29 +00:00
|
|
|
<% end %>
|
|
|
|
|
2018-11-20 00:43:06 +00:00
|
|
|
<div class="pure-g">
|
2019-05-02 01:03:39 +00:00
|
|
|
<% notifications.each_slice(4) do |slice| %>
|
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2018-11-20 00:43:06 +00:00
|
|
|
</div>
|
2018-08-06 18:49:52 +00:00
|
|
|
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
2018-05-08 02:57:47 +00:00
|
|
|
|
2020-03-15 21:46:08 +00:00
|
|
|
<script id="watched_data" type="application/json">
|
2020-03-29 21:44:45 +00:00
|
|
|
<%=
|
2020-03-15 21:46:08 +00:00
|
|
|
{
|
2020-03-29 21:44:45 +00:00
|
|
|
"csrf_token" => URI.encode_www_form(env.get?("csrf_token").try &.as(String) || "")
|
|
|
|
}.to_pretty_json
|
|
|
|
%>
|
2019-05-15 18:30:30 +00:00
|
|
|
</script>
|
|
|
|
<script src="/js/watched_widget.js"></script>
|
|
|
|
|
2018-11-20 00:43:06 +00:00
|
|
|
<div class="pure-g">
|
2019-05-02 01:03:39 +00:00
|
|
|
<% videos.each_slice(4) do |slice| %>
|
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2018-11-20 00:43:06 +00:00
|
|
|
</div>
|
2018-03-25 03:38:35 +00:00
|
|
|
|
2019-03-01 22:47:06 +00:00
|
|
|
<div class="pure-g h-box">
|
2019-04-14 22:04:52 +00:00
|
|
|
<div class="pure-u-1 pure-u-lg-1-5">
|
2019-06-08 21:04:55 +00:00
|
|
|
<% if page > 1 %>
|
|
|
|
<a href="/feed/subscriptions?page=<%= page - 1 %><% if env.params.query["max_results"]? %>&max_results=<%= max_results %><% end %>">
|
2019-05-02 01:03:39 +00:00
|
|
|
<%= translate(locale, "Previous page") %>
|
|
|
|
</a>
|
|
|
|
<% end %>
|
2018-03-25 03:38:35 +00:00
|
|
|
</div>
|
2019-04-14 22:04:52 +00:00
|
|
|
<div class="pure-u-1 pure-u-lg-3-5"></div>
|
2019-05-02 01:03:39 +00:00
|
|
|
<div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
|
2018-08-15 00:15:33 +00:00
|
|
|
<% if (videos.size + notifications.size) == max_results %>
|
2019-06-08 21:04:55 +00:00
|
|
|
<a href="/feed/subscriptions?page=<%= page + 1 %><% if env.params.query["max_results"]? %>&max_results=<%= max_results %><% end %>">
|
2018-12-20 21:32:09 +00:00
|
|
|
<%= translate(locale, "Next page") %>
|
|
|
|
</a>
|
2018-08-15 00:15:33 +00:00
|
|
|
<% end %>
|
2018-03-25 03:38:35 +00:00
|
|
|
</div>
|
2018-08-17 16:04:38 +00:00
|
|
|
</div>
|