actix-admin/actix_admin/templates/list.html
2022-04-27 18:22:47 +02:00

14 lines
249 B
HTML

{% extends "base.html" %}
{% block content %}
<table>
<tr>
{% for model_field in model_fields -%}
<th>{{ model_field[0] }}</th>
{%- endfor %}
</tr>
<tr>
<td></td>
</tr>
</table>
{% endblock content %}