aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 14:16:58 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 14:16:58 +0200
commit0a7f69cc1fc0e068c66ca34b3f4a44067cfe9761 (patch)
tree5212bc56c32c7f307ae642f877ab01aa70d43230 /src/web/templates
parentUpdated CHANGELOG. (diff)
downloadnewspipe-0a7f69cc1fc0e068c66ca34b3f4a44067cfe9761.tar.gz
newspipe-0a7f69cc1fc0e068c66ca34b3f4a44067cfe9761.tar.bz2
newspipe-0a7f69cc1fc0e068c66ca34b3f4a44067cfe9761.zip
Fetch feeds only if the user do not want to use its own crawler.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/profile.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/templates/profile.html b/src/web/templates/profile.html
index d21608cf..39834ca5 100644
--- a/src/web/templates/profile.html
+++ b/src/web/templates/profile.html
@@ -42,6 +42,10 @@
{{ form.is_public_profile.label }}
{{ form.is_public_profile(class_="form-control") }} {% for error in form.is_public_profile.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %}
<p>{{ _('Your profile will be available <a href="%(url)s">here</a>.', url=url_for('user.profile_public', nickname=user.nickname) ) }}</p>
+
+ {{ form.automatic_crawling.label }}
+ {{ form.automatic_crawling(class_="form-control") }} {% for error in form.automatic_crawling.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %}
+ <p>{{ _('Uncheck if you are using your own crawler.') }}</p>
</div>
</div>
<div class="row">
bgstack15