unsubscribe_verify.html 937 B

12345678910111213141516171819202122
  1. {% set page_title = 'Unsubscribe?' %}
  2. {% extends "base.html" %}
  3. {% block style %}
  4. <link href="/youtube.com/static/unsubscribe.css" rel="stylesheet"/>
  5. {% endblock style %}
  6. {% block main %}
  7. <p>Are you sure you want to unsubscribe from these channels?</p>
  8. <form class="subscriptions-import-form" action="/youtube.com/subscription_manager" method="POST">
  9. {% for channel_id, channel_name in unsubscribe_list %}
  10. <input type="hidden" name="channel_ids" value="{{ channel_id }}">
  11. {% endfor %}
  12. <input type="hidden" name="action" value="unsubscribe">
  13. <input type="submit" value="Yes, unsubscribe">
  14. </form>
  15. <ul class="list-channel">
  16. {% for channel_id, channel_name in unsubscribe_list %}
  17. <li><a href="{{ '/https://www.youtube.com/channel/' + channel_id }}" title="{{ channel_name }}">{{ channel_name }}</a></li>
  18. {% endfor %}
  19. </ul>
  20. {% endblock main %}