diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-04 08:05:30 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-04 08:05:30 +0100 |
commit | 57b14c2df97c5be77afe60e98f5e4219c454a9a3 (patch) | |
tree | d20d1345c084012091ad2d917778d52242d8b5d4 | |
parent | Improved navbar. (diff) | |
download | newspipe-57b14c2df97c5be77afe60e98f5e4219c454a9a3.tar.gz newspipe-57b14c2df97c5be77afe60e98f5e4219c454a9a3.tar.bz2 newspipe-57b14c2df97c5be77afe60e98f5e4219c454a9a3.zip |
Minor changes to the user data management page.
-rw-r--r-- | newspipe/web/templates/management.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/newspipe/web/templates/management.html b/newspipe/web/templates/management.html index af4dae2b..a6a7d57c 100644 --- a/newspipe/web/templates/management.html +++ b/newspipe/web/templates/management.html @@ -25,27 +25,30 @@ <div class="row"> <div class="col"> <h2>{{ _('Your data') }}</h2> + <br /> </div> </div> <div class="row"> <div class="col"> <h3>{{ _('Articles') }}</h3> - <h4>{{ _('Import') }}</h4> + <h5>{{ _('Import') }}</h5> <form action="" method="post" id="formImportJSON" enctype="multipart/form-data"> <span class="btn btn-file">{{ _('Import a Newspipe account') }} (<span class="text-info">*.json</span>)<input type="file" name="jsonfile" /></span> <button class="btn btn-primary" type="submit">OK</button> </form> - <h4>{{ _('Export') }}</h4> + <br /> + <h5>{{ _('Export') }}</h5> <a href="{{ url_for('articles.export') }}" class="btn btn-primary">{{ _('Export your Newspipe account to JSON') }}</a> </div> <div class="col"> <h3 id="import">{{ _('OPML') }}</h3> - <h4>{{ _('Import') }}</h4> + <h5>{{ _('Import') }}</h5> <form action="" method="post" id="formImportOPML" enctype="multipart/form-data"> <span class="btn btn-file">{{ _('Batch import feeds from OPML') }} (<span class="text-info">*.xml {{ _('or') }} *.opml</span>)<input type="file" name="opmlfile" /></span> <button class="btn btn-primary" type="submit">OK</button> </form> - <h4>{{ _('Export') }}</h4> + <br /> + <h5>{{ _('Export') }}</h5> <form class="form-inline" action="{{ url_for('feeds.export') }}" method="GET" id="formExportOPML"> <div class="form-group"> <div class="input-group"> @@ -67,6 +70,7 @@ </div> <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> |