mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-11 20:00:26 +01:00
116 lines
5.4 KiB
HTML
116 lines
5.4 KiB
HTML
{% extends 'layouts/base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Transactions' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container px-md-3 py-3 column-gap-5">
|
|
<div class="row gx-xl-4 gy-3">
|
|
<div class="col-12 col-xl-8 order-2 order-xl-1">
|
|
<div class="row mb-1">
|
|
<div class="col-sm-6 col-12">
|
|
{# Filter transactions button #}
|
|
<button type="button" class="btn btn-sm btn-outline-primary dropdown-toggle" type="button"
|
|
data-bs-toggle="collapse" data-bs-target="#collapse-filter" aria-expanded="false"
|
|
aria-controls="collapse-filter">
|
|
<i class="fa-solid fa-filter fa-fw me-2"></i>{% translate 'Filter transactions' %}
|
|
</button>
|
|
</div>
|
|
{# Ordering button#}
|
|
<div class="col-sm-6 col-12 tw:content-center my-3 my-sm-0">
|
|
<div class="text-sm-end" _="on change trigger updated on window">
|
|
<label for="order">{% translate "Order by" %}</label>
|
|
<select
|
|
class="tw:border-0 tw:focus-visible:outline-0 w-full pe-2 tw:leading-normal text-bg-tertiary tw:font-medium rounded bg-body text-body"
|
|
name="order" id="order">
|
|
<option value="default"
|
|
{% if order == 'default' %}selected{% endif %}>{% translate 'Default' %}</option>
|
|
<option value="older"
|
|
{% if order == 'older' %}selected{% endif %}>{% translate 'Oldest first' %}</option>
|
|
<option value="newer"
|
|
{% if order == 'newer' %}selected{% endif %}>{% translate 'Newest first' %}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{# Filter transactions form#}
|
|
<div class="collapse" id="collapse-filter">
|
|
<div class="card card-body">
|
|
<form _="on change or submit or search trigger updated on window end
|
|
install init_tom_select
|
|
install init_datepicker"
|
|
id="filter">
|
|
{% crispy filter.form %}
|
|
</form>
|
|
<button class="btn btn-outline-danger btn-sm"
|
|
_="on click call #filter.reset() then trigger change on #filter">{% translate 'Clear' %}</button>
|
|
</div>
|
|
</div>
|
|
<div id="transactions"
|
|
class="show-loading"
|
|
hx-get="{% url 'transactions_all_list' %}"
|
|
hx-trigger="load, updated from:window" hx-include="#filter, #page, #order">
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-xl-4 order-1 order-xl-2">
|
|
<ul class="nav nav-tabs" id="all-transactions-summary" role="tablist">
|
|
<li class="nav-item" role="presentation">
|
|
<button class="nav-link {% if summary_tab == 'currency' %}active{% endif %}"
|
|
id="currency-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#currency-tab-pane"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="currency-tab-pane"
|
|
_="on click fetch {% url 'transaction_all_summary_select' selected='currency' %}"
|
|
aria-selected="{% if summary_tab == 'currency' %}true{% else %}false{% endif %}">
|
|
{% trans 'Currencies' %}
|
|
</button>
|
|
</li>
|
|
<li class="nav-item" role="presentation">
|
|
<button class="nav-link {% if summary_tab == 'account' %}active{% endif %}"
|
|
id="account-tab"
|
|
data-bs-toggle="tab"
|
|
data-bs-target="#account-tab-pane"
|
|
type="button"
|
|
role="tab"
|
|
aria-controls="account-tab-pane"
|
|
_="on click fetch {% url 'transaction_all_summary_select' selected='account' %}"
|
|
aria-selected="{% if summary_tab == 'account' %}true{% else %}false{% endif %}">
|
|
{% trans 'Accounts' %}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
<div class="tab-content" id="all-transactions-content">
|
|
<div class="tab-pane fade {% if summary_tab == 'currency' %}show active{% endif %}"
|
|
id="currency-tab-pane"
|
|
role="tabpanel"
|
|
aria-labelledby="currency-tab"
|
|
tabindex="0">
|
|
<div id="currency-summary"
|
|
hx-get="{% url 'transaction_all_currency_summary' %}"
|
|
class="show-loading"
|
|
hx-trigger="load, selective_update from:window, updated from:window, change from:#filter, submit from:#filter, search from:#filter"
|
|
hx-include="#filter">
|
|
</div>
|
|
</div>
|
|
<div class="tab-pane fade {% if summary_tab == 'account' %}show active{% endif %}"
|
|
id="account-tab-pane"
|
|
role="tabpanel"
|
|
aria-labelledby="account-tab"
|
|
tabindex="0">
|
|
<div id="account-summary"
|
|
hx-get="{% url 'transaction_all_account_summary' %}"
|
|
class="show-loading"
|
|
hx-trigger="load, selective_update from:window, updated from:window, change from:#filter, submit from:#filter, search from:#filter"
|
|
hx-include="#filter">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<c-ui.transactions_fab></c-ui.transactions_fab>
|
|
{% endblock %}
|