aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
blob: 61da894329adb4a8fa3fed81d519645584036839 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <h1>Your subscriptions</h1>
        <p>You are subscribed to {{ nb_feeds }} <a href="/feeds">feeds</a>. Add a <a href="/edit_feed/">feed</a>.</p>
        <p>{{ nb_articles }} articles are stored in the database with {{ nb_unread_articles }} <a href="/unread/">unread articles</a>.</p>
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15