aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
blob: 77cfd2bddfc1d719474836f532f52237684e2f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% 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>
        <a href="/index_database/" class="btn btn-default">Index database</a>
    </div>
    <div class="jumbotron">
        <h1>Your Profile</h1>
        <p>Update your <a href="/profile/">profile</a>.</p>
    </div>
    <div class="jumbotron">
        <h1>Import feeds</h1>
        <form action="" method="post" id="formImportOPML" enctype="multipart/form-data">
            <span class="btn btn-default btn-file">Import OPM<input type="file" name="opmlfile" /></span>
            <button class="btn btn-default" type="submit">OK</button>
        </form>
    </div>
    <div class="jumbotron">
        <h1>Export articles</h1>
        <a href="/export/" class="btn btn-default">HTML</a>
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15