]> git.gir.st - subscriptionfeed.git/blob - app/youtube/templates/subscription_manager.html.j2
move youtube templates into blueprint
[subscriptionfeed.git] / app / youtube / templates / subscription_manager.html.j2
1 <!DOCTYPE html>
2 <title>Subscription Manager</title>
3 <link rel="shortcut icon" href='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" fill="%23fff"><circle r="150" cx="150" cy="150" fill="%23f00"/><path d="m120 97v106l93-53"/></svg>'>
4 <link rel="stylesheet" href="/static/style.css">
5
6 <b style=font-size:large>Subscription Manager</b><hr>
7
8 {% include 'messages.inc.j2' %}
9
10 <ul id=submgr>
11 <form method=post>
12 <input class="emoji" type=submit value="&#128221;&#xFE0F;" title="subscribe">{#
13 #}<input name=subscribe placeholder="channel id">
14 </form>
15 {% for row in rows %}
16 <li><form method=post>
17 <input class=emoji type=submit value="&#128465;&#xFE0F;" title="unsubscribe">{#
18 #}<a href="/channel/{{ row.channel_id }}">{{ row.author | e }}</a>
19 {% if row.obsolete %}
20 <abbr style="text-decoration:0" title="websub-subscription not renewed!">&#x1F6D1;&#xFE0F;</abbr>
21 {% endif %}
22 <input type="hidden" name="unsubscribe" value="{{ row.channel_id }}">
23 </form>
24 {% endfor %}
25 </ul>
Imprint / Impressum