[enh] csv/json download buttons

This commit is contained in:
asciimoo 2013-11-25 09:04:46 +01:00
parent 3b72cfabe2
commit d1dd6364c9
2 changed files with 15 additions and 1 deletions

View file

@ -18,5 +18,19 @@
{% include 'result_templates/default.html' %}
{% endif %}
{% endfor %}
<form method="post" action="">
<div class="left">
<input type="hidden" name="q" value="{{ q }}" />
<input type="hidden" name="format" value="csv" />
<input type="submit" value="download results in csv" />
</div>
</form>
<form method="post" action="">
<div class="">
<input type="hidden" name="q" value="{{ q }}" />
<input type="hidden" name="format" value="json" />
<input type="submit" value="download results in json" />
</div>
</form>
</div>
{% endblock %}