STARK-web/templates/result.html

53 lines
2.2 KiB
HTML
Raw Normal View History

2024-03-06 08:40:12 +00:00
{% extends "base.html" %}
{% block content %}
2024-02-13 14:19:22 +00:00
<div class="container wider-container">
<br>
2024-03-06 08:40:12 +00:00
<!-- Your table with many columns -->
<h6>{{ _('Results') }}</h6>
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12">
<form action="{{ url_for('result', result_id=request.view_args['result_id']) }}" method="POST" enctype="multipart/form-data" id="submit-form">
2024-03-12 09:16:15 +00:00
<button class="btn inline btn-large insidebutton margin-top" onclick="window.location.href = '{{url_for('index')}}?lang={{ _('code') }}'; event.preventDefault();">{{ _('Back to chosen settings') }} <i class="material-icons left">keyboard_double_arrow_left</i></button>
2024-03-06 08:40:12 +00:00
<button class="btn inline right waves-effect waves-light btn-large" type="submit" name="action">{{ _('Download complete results') }}
<i class="material-icons right">download</i>
</button>
</form>
</div>
</div>
<div class="table-wrapper">
<table>
<thead>
<tr>
{% for h, h_t in head %}
{% if not h == 'Grew-match URL' %}
<th><span>{{ h_t }} </span><span class="th-desc">&#x25be;</span><span class="th-asc">&#x25b4;</span></th>
2024-03-06 08:40:12 +00:00
{% endif %}
{% endfor %}
</tr>
</thead>
<tbody>
{% for i in range(content['Tree']|length) %}
<tr {% if 'Grew-match URL' in content %} class="tr-link" data-toggle="tooltip" title="See examples in Grew-match" data-href={{ content['Grew-match URL'][i] }} {% endif %}>
{% for col in content %}
{% if not col == 'Grew-match URL' %}
<td>{{ content[col][i] }}</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
2024-03-06 08:40:12 +00:00
</div>
{% endblock %}
{% block custom_js %}
2024-02-21 10:10:31 +00:00
<script src="/stark/static/js/result.js"></script>
2024-03-06 08:40:12 +00:00
{% endblock %}