2023-12-05 14:26:57 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1.0" / >
2024-01-22 13:56:12 +00:00
< title > STARK< / title >
2023-12-05 14:26:57 +00:00
<!-- CSS -->
< link href = "https://fonts.googleapis.com/icon?family=Material+Icons" rel = "stylesheet" >
< link href = "/static/css/materialize.css" type = "text/css" rel = "stylesheet" media = "screen,projection" / >
< link href = "/static/css/nouislider.css" type = "text/css" rel = "stylesheet" media = "screen,projection" / >
< link href = "/static/css/style.css" type = "text/css" rel = "stylesheet" media = "screen,projection" / >
2024-02-19 14:33:19 +00:00
< link rel = "icon" type = "image/svg+xml" href = "static/favicon/favicon.svg" >
2023-12-05 14:26:57 +00:00
< / head >
< body >
2024-02-19 14:33:19 +00:00
< nav class = "redcjvt" role = "navigation" >
< div class = "nav-wrapper container" > < a id = "logo-container" href = "/?lang={{ _('code') }}&reload=true" class = "brand-logo" > STARK< / a >
2023-12-05 14:26:57 +00:00
< ul id = "nav-mobile" class = "right hide-on-med-and-down" >
2024-02-19 14:33:19 +00:00
< li > < a href = "/about?lang={{ _('code') }}" > {{ _('About') }}< / a > < / li >
< li > < a id = "switch-language" href = "{{ _('switch_link') }}" >
{{ _('switch_code') }}
< / a > < / li >
2023-12-05 14:26:57 +00:00
< / ul >
< / div >
< / nav >
2024-02-13 14:19:22 +00:00
< div class = "container wider-container" >
2024-01-22 13:56:12 +00:00
< br >
< 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-02-19 14:33:19 +00:00
< button class = "btn waves-effect waves-light btn-large" type = "submit" name = "action" > {{ _('Download complete results') }}
2024-01-22 13:56:12 +00:00
< i class = "material-icons right" > download< / i >
< / button >
< / form >
2023-12-05 14:26:57 +00:00
< / div >
< / div >
<!-- Your table with many columns -->
< div class = "table-wrapper" >
< table >
< thead >
< tr >
{% for head in head_row %}
{% if not head == 'Grew-match URL' %}
< th > < span > {{ head }} < / span > < span class = "th-desc" > ▾ < / span > < span class = "th-asc" > ▴ < / span > < / th >
{% endif %}
{% endfor %}
< / tr >
< / thead >
< tbody >
{% for i in range(content['Tree']|length) %}
2024-02-13 14:19:22 +00:00
< 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 % } >
2023-12-05 14:26:57 +00:00
{% for col in content %}
{% if not col == 'Grew-match URL' %}
< td > {{ content[col][i] }}< / td >
{% endif %}
{% endfor %}
< / tr >
{% endfor %}
< / tbody >
< / table >
< / div >
< / div >
2024-02-19 14:33:19 +00:00
< footer class = "page-footer blackcjvt" >
2023-12-05 14:26:57 +00:00
< div class = "container" >
< div class = "row" >
< div class = "col l6 s12" >
< h5 class = "white-text" > Credits< / h5 >
< p class = "grey-text text-lighten-4" > Add some logos here?< / p >
< / div >
< / div >
< / div >
< div class = "footer-copyright" >
< div class = "container" >
Made by < a class = "orange-text text-lighten-3" href = "http://materializecss.com" > Materialize< / a >
< / div >
< / div >
< / footer >
<!-- Scripts -->
< script src = "https://code.jquery.com/jquery-2.1.1.min.js" > < / script >
< script src = "/static/js/materialize.js" > < / script >
< script src = "/static/js/wNumb.js" > < / script >
< script src = "/static/js/result.js" > < / script >
< / body >
< / html >