mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-25 10:08:36 +02:00
17 lines
544 B
HTML
17 lines
544 B
HTML
{% load i18n %}
|
|
|
|
|
|
<div hx-get="{% url 'insights_late_transactions' %}" hx-trigger="updated from:window" class="show-loading"
|
|
id="transactions-list" hx-swap="outerHTML">
|
|
{% if transactions %}
|
|
{% for transaction in transactions %}
|
|
<c-transaction.item :transaction="transaction"></c-transaction.item>
|
|
{% endfor %}
|
|
{# Floating bar #}
|
|
<c-ui.transactions-action-bar></c-ui.transactions-action-bar>
|
|
{% else %}
|
|
<c-msg.empty
|
|
title="{% translate 'No recent transactions' %}"></c-msg.empty>
|
|
{% endif %}
|
|
</div>
|