aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 21:57:20 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 21:57:20 +0200
commit38bf1d1ab57df154ba4de31b2c7e85a972a5289e (patch)
tree5e155a5721bff91639bc930eb4c46e1da6302376 /pyaggr3g470r/templates/management.html
parentTypo. (diff)
downloadnewspipe-38bf1d1ab57df154ba4de31b2c7e85a972a5289e.tar.gz
newspipe-38bf1d1ab57df154ba4de31b2c7e85a972a5289e.tar.bz2
newspipe-38bf1d1ab57df154ba4de31b2c7e85a972a5289e.zip
Fixed a bug when creating a new user via the dashboard. An other little improvement for the main menu.
Diffstat (limited to 'pyaggr3g470r/templates/management.html')
-rw-r--r--pyaggr3g470r/templates/management.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html
index 1f8b096f..998334a3 100644
--- a/pyaggr3g470r/templates/management.html
+++ b/pyaggr3g470r/templates/management.html
@@ -11,21 +11,6 @@
<a href="/expire_articles?weeks=10" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a>
</div>
<div class="well">
- <h1>{{ _('Your Profile') }}</h1>
- <div class="row">
- <div class="col-md-6">
- <p>{{ _('Update your') }} <a href="/profile">{{ _('profile') }}</a>.</p>
- <p>{{ _('Member since') }} {{ user.date_created | datetime }}.</p>
- <p>{{ _('Last seen:') }} {{ user.last_seen | datetime }}.</p>
- </div>
- </div>
- <div class="row">
- <div class="col-md-12">
- <a href="/delete_account" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete your account.') }}');">{{ _('Delete your account') }}</a>
- </div>
- </div>
- </div>
- <div class="well">
<h1 id="import">{{ _('OPML import/export') }}</h1>
<form action="" method="post" id="formImportOPML" enctype="multipart/form-data">
<span class="btn btn-default btn-file">{{ _('Batch import feeds from OPML') }} (<span class="text-info">*.xml {{ _('or') }} *.opml</span>)<input type="file" name="opmlfile" /></span>
bgstack15