kopia lustrzana https://github.com/djpeacher/django-projects
22 wiersze
721 B
HTML
22 wiersze
721 B
HTML
<table x-data="{ all: false }">
|
|
<thead>
|
|
<tr>
|
|
<th><input type="checkbox" x-on:click="all=!all"></th>
|
|
{% for header in headers %}
|
|
<th scope="col">{{ header|capfirst }}</th>
|
|
{% endfor %}
|
|
<th scope="col">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for object in object_list %}
|
|
<tr>
|
|
<td><input type="checkbox" name="id" value="{{ object.object.id }}" x-bind:checked="all"></td>
|
|
{% for field in object.fields %}
|
|
<td>{{ field }}</td>
|
|
{% endfor %}
|
|
<td>{{ object.actions }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |