aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/management.html
blob: eb5dbeb9ff7b915e6a2c56cb71e41f17d8d9a72e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="card">
        <div class="card-body">
            <div class="row">
                <div class="col">
                    <h2>{{ _('Your subscriptions') }}</h2>
                    <p>{{ _('You are subscribed to') }} {{ nb_feeds }} <a href="/feeds">{{ _('feeds') }}</a>. <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</p>
                    <p>{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} {{ _('unread articles') }}.</p>
                    <p>{{ _('You have') }} {{ nb_categories }} <a href="{{ url_for("categories.list_")}}">{{ _('categories') }}</a>.</p>
                    <a href="{{ url_for("articles.expire", weeks=10) }}" class="btn btn-primary" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a>
                </div>
                <div class="col">
                    <h2>{{ _('Your bookmarks') }}</h2>
                    <p>{{ _('You have') }} {{ nb_bookmarks }} <a href="{{ url_for("bookmarks.list_")}}">{{ _('bookmarks') }}</a>.</p>
                    <a href="{{ url_for("bookmarks.delete_all") }}" class="btn btn-primary" onclick="return confirm('{{ _('You are going to delete all bookmarks.') }}');">{{ _('Delete all bookmarks') }}</a>
                </div>
            </div>
        </div>
    </div>
    <br />
    <div class="card">
        <div class="card-body">
            <div class="row">
                <div class="col">
                    <h2>{{ _('Your data') }}</h2>
                    <br />
                </div>
            </div>
            <div class="row">
                <div class="col">
                    <h3>{{ _('Articles') }}</h3>
                </div>
            </div>
            <div class="row">
                <div class="col">
                    <h5>{{ _('Import') }}</h5>
                    <p>{{ _('Import a Newspipe account (*.json).') }}</p>
                    <form action="" method="post" id="formImportJSON" enctype="multipart/form-data">
                        <input type="file" name="jsonfile" />
                        <button class="btn btn-primary" type="submit">OK</button>
                    </form>
                </div>
                <div class="col">
                    <h5>{{ _('Export') }}</h5>
                    <p>{{ _('Export your newspipe account to JSON.') }}</p>
                    <a href="{{ url_for('articles.export') }}" class="btn btn-primary">{{ _('Export') }}</a>
                </div>
            </div>
            <hr />
            <div class="row">
                <div class="col">
                    <h3 id="import">{{ _('Feeds') }}</h3>
                </div>
            </div>
            <div class="row">
                <div class="col">
                    <h5>{{ _('Import') }}</h5>
                    <p>{{ _('Import feeds from OPML (*.xml or *.opml).') }}</p>
                    <form action="" method="post" id="formImportOPML" enctype="multipart/form-data">
                        <input type="file" name="opmlfile" />
                        <button class="btn btn-primary" type="submit">OK</button>
                    </form>
                </div>
                <div class="col">
                    <h5>{{ _('Export') }}</h5>
                    <p>{{ _('Export feeds to OPML.') }}</p>
                    <form class="form" action="{{ url_for('feeds.export') }}" method="GET" id="formExportOPML">
                        <div class="form-group">
                            <div class="input-group">
                                <label>Include disabled feeds</label>
                                <input type="checkbox" class="form-control" name="includedisabled" checked />
                            </div>
                            <div class="input-group">
                                <label title="Newspipe encountered too much problems when retrieving these feeds.">Include dead feeds</label>
                                <input type="checkbox" class="form-control" name="includeexceedederrorcount" checked />
                            </div>
                            <div class="input-group">
                                <label>Include private feeds</label>
                                <input type="checkbox" class="form-control" name="includeprivate" checked />
                            </div>
                        </div>
                        <button class="btn btn-primary" type="submit">{{ _('Export') }}</button>
                    </form>
                </div>
            </div>
            <hr />
            <div class="row">
                <div class="col-md-12">
                    <br />
                    <h2>{{ _('Bookmarks') }}</h2>
                    <a href="{{ url_for('bookmarks.export') }}" class="btn btn-primary">{{ _('Export your bookmarks to JSON') }}</a>
                </div>
            </div>
        </div>
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15