diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-31 22:43:42 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-31 22:43:42 +0100 |
commit | 2c9457bfa0978fb6079cf9c778d7870aeab52645 (patch) | |
tree | ee4fe3e621949883a478110410aac8514f7b2e08 /src/web/templates | |
parent | Merge branch 'master' of gitlab.com:newspipe/newspipe (diff) | |
download | newspipe-2c9457bfa0978fb6079cf9c778d7870aeab52645.tar.gz newspipe-2c9457bfa0978fb6079cf9c778d7870aeab52645.tar.bz2 newspipe-2c9457bfa0978fb6079cf9c778d7870aeab52645.zip |
Added an option to not include dead feeds in the OPML export.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/management.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/web/templates/management.html b/src/web/templates/management.html index 9c6a2e1c..4d7c2da3 100644 --- a/src/web/templates/management.html +++ b/src/web/templates/management.html @@ -46,7 +46,11 @@ <div class="form-group"> <div class="input-group"> <label>Include disabled feeds</label> - <input type="checkbox" class="form-control"name="includedisabled" checked /> + <input type="checkbox" class="form-control" name="includedisabled" checked /> + </div> + <div class="input-group"> + <label title="Newspipe encountered too much problems when retrieving these feeds.">Include dead feeds</label> + <input type="checkbox" class="form-control" name="includeexceedederrorcount" checked /> </div> <div class="input-group"> <label>Include private feeds</label> |