Skip to content
Snippets Groups Projects
Commit 202ab2e0 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Add download icons to job page download buttons.

parent 1f9137be
No related branches found
No related tags found
No related merge requests found
...@@ -110,13 +110,22 @@ ...@@ -110,13 +110,22 @@
</div> </div>
</div> </div>
<span class="card-title">Files</span> <span class="card-title">Files</span>
<p> <table>
{% for file in files %} <thead>
<a href="{{ url_for('main.corpus_download', corpus_id=corpus.id, file=files[file]['path']) }}" class="waves-effect waves-light btn-small"> <tr>
<i class="material-icons left">file_download</i>{{ file }} <th style="width: 50%;">Inputs</th>
</a> </tr>
{% endfor %} </thead>
</p> <tbody>
{% for file in files %}
<tr>
<td>
<a href="{{ url_for('main.corpus_download', corpus_id=corpus.id, file=files[file]['path']) }}" class="waves-effect waves-light btn-small"><i class="material-icons left">file_download</i>{{ file }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div> </div>
</div> </div>
......
...@@ -208,12 +208,12 @@ ...@@ -208,12 +208,12 @@
{% for file in files %} {% for file in files %}
<tr> <tr>
<td> <td>
<a href="{{ url_for('main.job_download', job_id=job.id, file=files[file]['path']) }}" class="waves-effect waves-light btn-small">{{ file }}</a> <a href="{{ url_for('main.job_download', job_id=job.id, file=files[file]['path']) }}" class="waves-effect waves-light btn-small"><i class="material-icons left">file_download</i>{{ file }}</a>
</td> </td>
<td> <td>
{% if job.status == 'complete' %} {% if job.status == 'complete' %}
{% for result in files[file]['results'] %} {% for result in files[file]['results'] %}
<a href="{{ url_for('main.job_download', job_id=job.id, file=files[file]['results'][result]['path']) }}" class="waves-effect waves-light btn-small">{{ result }}</a> <a href="{{ url_for('main.job_download', job_id=job.id, file=files[file]['results'][result]['path']) }}" class="waves-effect waves-light btn-small"><i class="material-icons left">file_download</i>{{ result }}</a>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
</td> </td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment