18 lines
409 B
HTML
18 lines
409 B
HTML
|
|
<!DOCTYPE html>
|
|
{% extends 'head.html' %}
|
|
{% block content %}
|
|
<h4>Hello! Here are your results.</h4>
|
|
<a id="download" href="/downloadcsv">Click here to download as CSV.</a>
|
|
</div>
|
|
<div class="panda-table">
|
|
<!-- Display Converted Table -->
|
|
{% for table in tables %}
|
|
<h2> {{ titles }}</h2>
|
|
{{ table | safe }}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
{% endblock %}
|