forked from carltongibson/neapolitan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
26 lines (25 loc) · 749 Bytes
/
Copy pathlist.html
File metadata and controls
26 lines (25 loc) · 749 Bytes
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
{# partial/list.html - List partial template #}
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
{% for header in headers %}
<th>{{ header|capfirst }}</th>
{% endfor %}
<th class="text-end">Actions</th>
</tr>
</thead>
<tbody>
{% for object in object_list %}
<tr>
{% for field in object.fields %}
<td>{{ field.value }}</td>
{% endfor %}
<td class="text-end">
{{ object.actions }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>