mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
93 lines
3.8 KiB
Twig
93 lines
3.8 KiB
Twig
{% extends "./layout/default.twig" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, start, end, reportType, accountIds) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<!-- options block -->
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'options'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<ul class="list-inline">
|
|
{% for hide in hideable %}
|
|
<li><input
|
|
{% if hide in defaultShow %}checked{% endif %}
|
|
type="checkbox" class="audit-option-checkbox" name="option[]" value="{{ hide }}" id="option_{{ hide }}" /> <label for="option_{{ hide }}" style="font-weight:normal;">{{ trans('list.'~hide) }}</label></li>
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% for account in accounts %}
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ account.name }}</h3>
|
|
</div>
|
|
{% set url = route('accounts.show',account.id) %}
|
|
{% if not auditData[account.id].exists %}
|
|
<div class="box-body">
|
|
|
|
<em>
|
|
{{ trans('firefly.no_audit_activity',
|
|
{
|
|
account_name: account.name,
|
|
url: url,
|
|
start: start.formatLocalized(monthAndDayFormat),
|
|
end: end.formatLocalized(monthAndDayFormat),
|
|
})|raw
|
|
}}
|
|
</em>
|
|
</div>
|
|
{% else %}
|
|
<div class="box-body table-responsive no-padding">
|
|
<p style="padding:10px;">
|
|
|
|
{{ trans('firefly.audit_end_balance',
|
|
{
|
|
account_name: account.name,
|
|
url: url,
|
|
end: auditData[account.id].end,
|
|
balance: auditData[account.id].endBalance|formatAmount
|
|
})|raw
|
|
}}
|
|
</p>
|
|
{% include 'reports/partials/journals-audit.twig' with {'journals': auditData[account.id].journals,'account':account} %}
|
|
<p style="padding:10px;">
|
|
{{ trans('firefly.audit_end_balance',
|
|
{
|
|
account_name: account.name,
|
|
url: url,
|
|
end: auditData[account.id].dayBefore,
|
|
balance: auditData[account.id].dayBeforeBalance|formatAmount
|
|
})|raw
|
|
}}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
{% block styles %}
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<script type="text/javascript">
|
|
var hideable = {{ hideable|json_encode|raw }};
|
|
</script>
|
|
<script type="text/javascript" src="js/ff/reports/audit/all.js"></script>
|
|
{% endblock %}
|