diff options
Diffstat (limited to 'ishtar_common/templates/ishtar/import_table.html')
-rw-r--r-- | ishtar_common/templates/ishtar/import_table.html | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/import_table.html b/ishtar_common/templates/ishtar/import_table.html new file mode 100644 index 000000000..95940a4ab --- /dev/null +++ b/ishtar_common/templates/ishtar/import_table.html @@ -0,0 +1,81 @@ +{% load i18n inline_formset %} +<script type="text/javascript"> +var html = $("#message_list").html(); +{% if MESSAGES and AJAX %}{% for message, message_type in MESSAGES %} +html += '<div class="alert alert-{{message_type}} alert-dismissible fade show"'; +html += ' role="alert">'; +html += ' {{message}}'; +html += ' <button type="button" class="close" data-dismiss="alert"'; +html += ' aria-label="Close">'; +html += ' <span aria-hidden="true">×</span>'; +html += ' </button>'; +html += ' </div>'; +{% endfor %}{% endif %} +$("#message_list").html(html); + +$("#import-list").find('select').prop('disabled', true); +$("#import-list").find('input').prop('disabled', true); + +</script> +<h2>{{page_name}}</h2> +<div class='form' id="import-list"> + {% if not object_list %} + <p>{% trans "No pending imports." %}</p> + {% else %} + <table class="table table-striped"> + <tr> + <th>{% trans "Name" %}</th> + <th>{% trans "Type" %}</th> + <th>{% trans "File" context "file" %}</th> + <th>{% trans "Creation" %}</th> + <th>{% trans "Status" %}</th> + <th>{% trans "Action" %}</th> + <th>{% trans "Unmatched items" %}</th> + <th>{% trans "Error" %}</th> + <th>{% trans "Control" %}</th> + <th>{% trans "Match" %}</th> + </tr> + {% for import in object_list %} + <tr{% if import.pk in refreshed_pks %} class='bg-info'{% endif %}> + <td> + {{import.name|default:"-"}} + </td> + <td> + {{import.importer_type}} + </td> + <td> + <a href='{{import.imported_file.url}}'>{% trans "Source file" %}</a> + </td> + <td> + {{import.creation_date}} ({{import.user}}) + </td> + <td> + {{import.status}} + </td> + <td> + <select name='import-action-{{import.pk}}'> + <option value=''>--------</option> + {% for action, lbl in import.get_actions %} + <option value='{{action}}'>{{lbl}}</option> + {% endfor%} + </select> + </td> + <td> + {% if import.need_matching %} + <a href='{% url "import_link_unmatched" import.pk %}'>{% trans "Match"%}</a> + {% endif %} + </td> + <td style="white-space: nowrap;">{% if import.error_file %} + <i class="text-danger fa fa-exclamation-triangle" aria-hidden="true"></i> <a href='{{import.error_file.url}}'>{% trans "File" context "not a directory" %}</a> + {% endif %}</td> + <td>{% if import.result_file %} + <a href='{{import.result_file.url}}'>{% trans "File" context "not a directory" %}</a> + {% endif %}</td> + <td>{% if import.match_file %} + <a href='{{import.match_file.url}}'>{% trans "File" context "not a directory" %}</a> + {% endif %}</td> + </tr> + {% endfor %} + </table> + {% endif %} +</div> |