diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-06 23:45:06 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-06 23:45:06 +0200 |
commit | 0e42e6d8ce1a056b4426148651b741f345968be2 (patch) | |
tree | 982b511677d05142726d92410e0d67ec1d25574b /src/web/templates/management.html | |
parent | replace g.user by current_user (diff) | |
download | newspipe-0e42e6d8ce1a056b4426148651b741f345968be2.tar.gz newspipe-0e42e6d8ce1a056b4426148651b741f345968be2.tar.bz2 newspipe-0e42e6d8ce1a056b4426148651b741f345968be2.zip |
major problems fixed.
Diffstat (limited to 'src/web/templates/management.html')
-rw-r--r-- | src/web/templates/management.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/templates/management.html b/src/web/templates/management.html index 01179b5e..dc95a052 100644 --- a/src/web/templates/management.html +++ b/src/web/templates/management.html @@ -14,18 +14,18 @@ <button class="btn btn-default" type="submit">OK</button> </form> <br /> - <a href="/export_opml" class="btn btn-default">{{ _('Export feeds to OPML') }}</a> + <a href="{{ url_for('articles.export', format='OPML') }}" class="btn btn-default">{{ _('Export feeds to OPML') }}</a> <h1>{{ _('Data liberation') }}</h1> <form action="" method="post" id="formImportJSON" enctype="multipart/form-data"> <span class="btn btn-default btn-file">{{ _('Import account') }} (<span class="text-info">*.json</span>)<input type="file" name="jsonfile" /></span> <button class="btn btn-default" type="submit">OK</button> </form> <br /> - <a href="/export?format=JSON" class="btn btn-default">{{ _('Export account to JSON') }}</a> + <a href="{{ url_for('articles.export', format='JSON') }}" class="btn btn-default">{{ _('Export account to JSON') }}</a> </div> <div class="well"> <h1>{{ _('Export articles') }}</h1> - <a href="/export?format=HTML" class="btn btn-default">HTML</a> + <a href="{{ url_for('articles.export', format='HTML') }}" class="btn btn-default">HTML</a> </div> </div><!-- /.container --> {% endblock %} |