2018-07-06 00:48:55 +00:00
|
|
|
<% content_for "header" do %>
|
|
|
|
<title>Subscription manager - Invidious</title>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<h1><%= subscriptions.size %> subscriptions</h1>
|
|
|
|
|
|
|
|
<% subscriptions.each do |channel| %>
|
|
|
|
<h3 class="h-box">
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-2-5">
|
|
|
|
<a href="/channel/<%= channel.id %>"><%= channel.author %></a>
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-2-5"></div>
|
2018-07-16 19:30:15 +00:00
|
|
|
<div class="pure-u-1-5" style="text-align: right;">
|
|
|
|
<a href="/subscription_ajax?action_remove_subscriptions=1&c=<%= channel.id %>">unsubscribe</a>
|
2018-07-06 00:48:55 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</h3>
|
2018-07-16 19:30:15 +00:00
|
|
|
|
|
|
|
<% if subscriptions[-1].author != channel.author %>
|
|
|
|
<hr style="margin-left:1em; margin-right:1em;">
|
|
|
|
<% end %>
|
2018-07-06 00:48:55 +00:00
|
|
|
<% end %>
|