summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/view_import_csv.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/ishtar/blocks/view_import_csv.html')
-rw-r--r--ishtar_common/templates/ishtar/blocks/view_import_csv.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/view_import_csv.html b/ishtar_common/templates/ishtar/blocks/view_import_csv.html
new file mode 100644
index 000000000..f1b089ce2
--- /dev/null
+++ b/ishtar_common/templates/ishtar/blocks/view_import_csv.html
@@ -0,0 +1,32 @@
+{% load i18n %}
+
+<div class="modal-dialog full modal-lg">
+ <div class="modal-content">
+ <div class="modal-header">
+ <h2>{{ title }} |
+ <i class="{{icon}}" aria-hidden="true"></i>
+ {{target}}
+ </h2>
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
+ <span aria-hidden="true">&times;</span>
+ </button>
+ </div>
+ <div class="table-scroll">
+ <table class="table table-striped table-bordered">
+ <thead>
+ <tr>
+ <th>&nbsp;</th>
+ {% for head in header %}<th>{{head}}</th>{% endfor %}
+ </tr>
+ </thead>
+ <tbody>
+ {% for line in content %}
+ <tr>
+ <td>{{ forloop.counter }}</td>
+ {% for cell in line %}<td>{{cell}}</td>{% endfor %}
+ </tr>{% endfor %}
+ </tbody>
+ </table>
+ </div>
+ </div>
+</div>