actix-admin/actix_admin/templates/list.html

14 lines
249 B
HTML
Raw Normal View History

2022-04-23 20:03:09 +02:00
{% extends "base.html" %}
{% block content %}
2022-04-27 18:22:47 +02:00
<table>
<tr>
{% for model_field in model_fields -%}
<th>{{ model_field[0] }}</th>
{%- endfor %}
</tr>
<tr>
<td></td>
</tr>
</table>
2022-04-23 20:03:09 +02:00
{% endblock content %}