aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-14 07:43:58 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-14 07:43:58 +0100
commitd3f063a89aef189a177971216e422d845ab20e68 (patch)
treefbbabcb8c40957202dfcc48738a07abe6d7b22de /src/web/templates
parentBetter checks for the public pages. (diff)
downloadnewspipe-d3f063a89aef189a177971216e422d845ab20e68.tar.gz
newspipe-d3f063a89aef189a177971216e422d845ab20e68.tar.bz2
newspipe-d3f063a89aef189a177971216e422d845ab20e68.zip
The user should mark a feed as private when there is a private token in the link of the feed.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/edit_feed.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/templates/edit_feed.html b/src/web/templates/edit_feed.html
index fd2427c1..9c773204 100644
--- a/src/web/templates/edit_feed.html
+++ b/src/web/templates/edit_feed.html
@@ -53,6 +53,7 @@
{{ form.private(class_="checkbox", style="margin-left: 0px;") }}
</div>
<span class="text-muted">{{ _("If checked, articles of this feed won't be available to others and the feed won't be listed on <a href='%(url)s'>your profile page</a>.", url=url_for('user.profile_public', nickname=current_user.nickname) ) }}</span>
+ <span class="text-muted">{{ _("Check this box if there is a private token in the link of the feed.") }}</span>
</div>
</div>
bgstack15