actix-admin/actix_admin/templates/list.html

15 lines
296 B
HTML
Raw Normal View History

2022-04-23 20:03:09 +02:00
{% extends "base.html" %}
{% block content %}
2022-05-01 23:30:20 +02:00
<a href="create" role="button">Create</a>
2022-04-27 18:22:47 +02:00
<table>
<tr>
2022-05-01 23:30:20 +02:00
{% for model_field in view_model.fields -%}
2022-04-27 18:22:47 +02:00
<th>{{ model_field[0] }}</th>
{%- endfor %}
</tr>
<tr>
<td></td>
</tr>
</table>
2022-04-23 20:03:09 +02:00
{% endblock content %}