aboutsummaryrefslogtreecommitdiff
path: root/source/templates/feed.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-10 15:58:33 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-10 15:58:33 +0100
commite1d168f92cca540da0632af1e90e9cfc3625fb11 (patch)
treee99d6daaa344dac1c58555fe5f89baec65954a4c /source/templates/feed.html
parentImproved HTML output of the export.. (diff)
downloadnewspipe-e1d168f92cca540da0632af1e90e9cfc3625fb11.tar.gz
newspipe-e1d168f92cca540da0632af1e90e9cfc3625fb11.tar.bz2
newspipe-e1d168f92cca540da0632af1e90e9cfc3625fb11.zip
It is now possible to change the URL of a site/blog.
Diffstat (limited to 'source/templates/feed.html')
-rw-r--r--source/templates/feed.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/templates/feed.html b/source/templates/feed.html
index 66d344db..f4a35e77 100644
--- a/source/templates/feed.html
+++ b/source/templates/feed.html
@@ -109,6 +109,12 @@ import utils
<input type="hidden" name="feed_id" value="${feed['feed_id']}" />
</form>
+ <form method=post action="/change_site_url/">
+ <input type="url" name="new_site_url" value="" placeholder="Enter a new URL for this site (then press Enter)." maxlength=2048 autocomplete="on" size="50" />
+ <input type="hidden" name="feed_id" value="${feed['feed_id']}" />
+ <input type="hidden" name="old_site_url" value="${feed['site_link']}" />
+ </form>
+
<form method=post action="/change_feed_url/">
<input type="url" name="new_feed_url" value="" placeholder="Enter a new URL in order to retrieve articles (then press Enter)." maxlength=2048 autocomplete="on" size="50" />
<input type="hidden" name="feed_id" value="${feed['feed_id']}" />
bgstack15