blob: 061dfe0f44b05a8a63455df9eb8f8df966d07ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% load i18n %}
<div class="btn-group btn-group-sm" role="group">
<span class="btn btn-outline-secondary no-hover">
<i class="{{logo}}" aria-hidden="true"></i>
{{ file_label }}
</span>
{% if file_type %}
<a class="btn btn-qa btn-secondary"
href='#'
data-target="{% url 'import_display_csv' file_type current_import.group_prefix current_import.pk %}"
onclick=""
title="{% trans 'View' %}">
<i class="fa fa-eye" aria-hidden="true"></i>
</a>{% endif %}
<a class="btn btn-secondary" href='{{file.url}}' title="{% trans 'Download' %}">
<i class="fa fa-download" aria-hidden="true"></i>
</a>
</div>
|