53 lines
2.2 KiB
HTML
53 lines
2.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="container wider-container">
|
|
<br>
|
|
|
|
|
|
<!-- 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">
|
|
<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>
|
|
<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">▾</span><span class="th-asc">▴</span></th>
|
|
{% 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>
|
|
</div>
|
|
{% endblock %}
|
|
{% block custom_js %}
|
|
<script src="/stark/static/js/result.js"></script>
|
|
{% endblock %}
|