aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/edit_feed.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 21:41:24 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 21:41:24 +0100
commit2f5424febbc1e12b6abf29f5e0259d4b8c17d2aa (patch)
treedada79f00267fce1ad974bb0c9a52a243b4855b7 /src/web/templates/edit_feed.html
parentFormat the date. (diff)
downloadnewspipe-2f5424febbc1e12b6abf29f5e0259d4b8c17d2aa.tar.gz
newspipe-2f5424febbc1e12b6abf29f5e0259d4b8c17d2aa.tar.bz2
newspipe-2f5424febbc1e12b6abf29f5e0259d4b8c17d2aa.zip
Various improvements for the public pages and the private profile edition page.
Diffstat (limited to 'src/web/templates/edit_feed.html')
-rw-r--r--src/web/templates/edit_feed.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/templates/edit_feed.html b/src/web/templates/edit_feed.html
index 128b54fb..fd2427c1 100644
--- a/src/web/templates/edit_feed.html
+++ b/src/web/templates/edit_feed.html
@@ -52,7 +52,9 @@
<div class="checkbox">
{{ 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>
</div>
+
</div>
<div class="form-group">
bgstack15