forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/asset_submissions.html

33 lines
608 B
HTML

{% extends "default.html" %}
{% block content %}
<style>
.asset-submission {
max-width: 150px !important;
max-height: 150px !important;
}
</style>
<pre>
</pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{% for image in images %}
<tr>
<td>{{loop.index}}</td>
<td>{{image}}</td>
<td><img class="asset-submission" loading="lazy" alt="{{name}}" src="/asset_submissions/marseys/{{image}}"></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}