azube/core/templates/component/report.html

14 lines
486 B
HTML
Raw Permalink Normal View History

2024-12-06 14:04:17 +01:00
<a class="{{ style.card }}"
href="/report/{{ report.id }}"
2024-12-05 17:03:42 +01:00
hx-get="/report/{{ report.id }}" hx-target="#main_content" hx-push-url="true" hx-swap="innerHTML"
>
2024-12-04 11:41:57 +01:00
{% 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>
2024-12-06 15:07:03 +01:00
{% endif %}
<img src="/report/{{ report.id }}/png" class="w-full h-full object-cover">
2024-12-06 14:04:17 +01:00
</a>