blob: f1b089ce224830744dfaa773fe5e2ca6837d9ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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">×</span>
</button>
</div>
<div class="table-scroll">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th> </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>
|