azube/core/templates/component/report.html

13 lines
486 B
HTML

<a class="{{ style.card }}"
href="/report/{{ report.id }}"
hx-get="/report/{{ report.id }}" hx-target="#main_content" hx-push-url="true" hx-swap="innerHTML"
>
{% if report.is_approved %}
<div
class="absolute top-0 right-0 translate-y-3 -translate-x-3 bg-green-500 text-white rounded-full w-6 h-6 flex items-center justify-center scale-[1.5]"
>
</div>
{% endif %}
<img src="/report/{{ report.id }}/png" class="w-full h-full object-cover">
</a>