aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
blob: 65b589f8d568dd840e84eed0174f3e55591d118a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <h1>Subscriptions</h1>
        <p>You are subscribed to {{ nb_feeds }} <a href="/feeds">feeds</a>.</p>
    </div>

    <div class="jumbotron">
        <h1>Database</h1>
        <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