diff options
author | asciimoo <asciimoo@gmail.com> | 2014-01-30 14:30:07 +0100 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2014-01-30 14:30:07 +0100 |
commit | f1eefa004d065d62c7e8da468f2ddc0825ec5442 (patch) | |
tree | ca51f513a986a86ae6fd801fd0e8f85ed9c40a7b | |
parent | 3cc62341c5d0d153217b85cbec1474a0ccd866ed (diff) | |
download | searxng-f1eefa004d065d62c7e8da468f2ddc0825ec5442.tar.gz searxng-f1eefa004d065d62c7e8da468f2ddc0825ec5442.zip |
[fix] paging for api forms
-rw-r--r-- | searx/templates/results.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/templates/results.html b/searx/templates/results.html index bad6085e5..df249058b 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -24,6 +24,7 @@ <div class="left"> <input type="hidden" name="q" value="{{ q }}" /> <input type="hidden" name="format" value="csv" /> + <input type="hidden" name="pageno" value="{{ pageno }}" /> <input type="submit" value="csv" /> </div> </form> @@ -31,6 +32,7 @@ <div class="left"> <input type="hidden" name="q" value="{{ q }}" /> <input type="hidden" name="format" value="json" /> + <input type="hidden" name="pageno" value="{{ pageno }}" /> <input type="submit" value="json" /> </div> </form> @@ -38,6 +40,7 @@ <div class=""> <input type="hidden" name="q" value="{{ q }}" /> <input type="hidden" name="format" value="rss" /> + <input type="hidden" name="pageno" value="{{ pageno }}" /> <input type="submit" value="rss" /> </div> </form> |