]> git.gir.st - subscriptionfeed.git/blob - app/youtube/templates/subscription_manager.html.j2
clean up sub* managers
[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 {% import 'macros.imp.j2' as macros with context %}
7 {{ macros.headerbar() }}
8
9 <article>
10 <h1>Subscription Manager</h1>
11
12 {% include 'messages.inc.j2' %}
13
14 <ul id=submgr>
15 <form method=post>
16 <input class="emoji" type=submit value="&#128221;&#xFE0F;" title="subscribe">
17 <input name=subscribe placeholder="channel id">
18 </form>
19 {% for row in rows %}
20 <li>{{ macros.emoji_button("subscribe", row.channel_id, True) }}
21 <a href="/channel/{{ row.channel_id }}">{{ row.author | e }}</a>
22 {% if row.subscribed_until %}
23 <abbr style="text-decoration:0" title="websub-subscription not renewed!">&#x1F6D1;&#xFE0F;</abbr>
24 {% endif %}
25 {% endfor %}
26 </ul>
27 </article>
Imprint / Impressum