]> git.gir.st - subscriptionfeed.git/blob - app/youtube/templates/subscription_manager.html.j2
let all templates inherit from a base template
[subscriptionfeed.git] / app / youtube / templates / subscription_manager.html.j2
1 {% extends "base.html.j2" %}
2 {% import 'macros.imp.j2' as macros %}
3
4 {% block title %}Subscription Manager{% endblock %}
5
6 {% block content %}
7 {{ super() }}
8 <ul id=submgr>
9 <form method=post>
10 <input class="emoji" type=submit value="&#128221;&#xFE0F;" title="subscribe">
11 <input name=subscribe placeholder="channel id">
12 </form>
13 {% for row in rows %}
14 <li>{{ macros.emoji_button("subscribe", row.channel_id, True) }}
15 <a href="/channel/{{ row.channel_id }}">{{ row.author | e }}</a>
16 {% if row.subscribed_until %}
17 <abbr style="text-decoration:0" title="websub-subscription not renewed!">&#x1F6D1;&#xFE0F;</abbr>
18 {% endif %}
19 {% endfor %}
20 </ul>
21 {% endblock %}
Imprint / Impressum