aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-24 13:30:11 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-24 13:30:11 +0200
commit106d83ea8157c6f14a399716381ddf07ac21a024 (patch)
treefab0f6c0fa0dd449b52242377da17c97e0bb8168 /src/web/templates
parentUpdated deprecated code. (diff)
downloadnewspipe-106d83ea8157c6f14a399716381ddf07ac21a024.tar.gz
newspipe-106d83ea8157c6f14a399716381ddf07ac21a024.tar.bz2
newspipe-106d83ea8157c6f14a399716381ddf07ac21a024.zip
add the possibility to mak a feed as private
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/edit_feed.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/web/templates/edit_feed.html b/src/web/templates/edit_feed.html
index ab624f15..128b54fb 100644
--- a/src/web/templates/edit_feed.html
+++ b/src/web/templates/edit_feed.html
@@ -45,6 +45,16 @@
</div>
</div>
</div>
+
+ <div class="form-group">
+ <label for="{{ form.private.id }}" class="col-sm-3 control-label">{{ form.private.label }}</label>
+ <div class="col-sm-9">
+ <div class="checkbox">
+ {{ form.private(class_="checkbox", style="margin-left: 0px;") }}
+ </div>
+ </div>
+ </div>
+
<div class="form-group">
<label class="col-sm-3 control-label">{{ _("Filters") }}</label>
<div class="col-sm-1">
bgstack15