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 @@
</div>
</div>
<span class="card-title">Files</span>
<p>
{% for file in files %}
<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>
{% endfor %}
</p>
<table>
<thead>
<tr>
<th style="width: 50%;">Inputs</th>
</tr>
</thead>
<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>
......
......@@ -208,12 +208,12 @@
{% for file in files %}
<tr>
<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>
{% if job.status == 'complete' %}
{% 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 %}
{% endif %}
</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