actix-admin/actix_admin/templates/list.html
2022-05-01 23:30:20 +02:00

15 lines
296 B
HTML

{% extends "base.html" %}
{% block content %}
<a href="create" role="button">Create</a>
<table>
<tr>
{% for model_field in view_model.fields -%}
<th>{{ model_field[0] }}</th>
{%- endfor %}
</tr>
<tr>
<td></td>
</tr>
</table>
{% endblock content %}