mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
1f321fadd4
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
79 lines
4.1 KiB
Twig
79 lines
4.1 KiB
Twig
{% extends "./layout/default.twig" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="POST" action="{{ route('transactions.mass-destroy') }}" accept-charset="UTF-8" class="form-horizontal" id="destroy">
|
|
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
|
|
|
<div class="row">
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-8 coll-offset-md-2 col-sm-12">
|
|
<div class="box box-danger">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'mass_delete_journals'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<p class="text-danger">
|
|
{{ trans('form.permDeleteWarning') }}
|
|
{{ 'perm-delete-many'|_ }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ trans('form.mass_journal_are_you_sure') }}
|
|
{{ trans('form.mass_make_selection') }}
|
|
</p>
|
|
|
|
<table class="table table-striped table-condensed">
|
|
<tr>
|
|
<th> </th>
|
|
<th>{{ trans('list.description') }}</th>
|
|
<th>{{ trans('list.amount') }}</th>
|
|
<th class="hidden-sm hidden-xs">{{ trans('list.date') }}</th>
|
|
<th class="hidden-xs">{{ trans('list.from') }}</th>
|
|
<th class="hidden-xs">{{ trans('list.to') }}</th>
|
|
</tr>
|
|
{% for journal in journals %}
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="confirm_mass_delete[]" value="{{ journal.id }}" checked/>
|
|
</td>
|
|
<td>
|
|
<a href="{{ route('transactions.show',journal.id) }}" title="{{ journal.description }}">{{ journal.description }}</a>
|
|
</td>
|
|
<td>
|
|
{{ journal|formatJournal }}
|
|
</td>
|
|
<td>
|
|
{{ journal.date.formatLocalized(monthAndDayFormat) }}
|
|
</td>
|
|
<td>
|
|
{% if journal.source_account_type == 'Cash account' %}
|
|
<span class="text-success">(cash)</span>
|
|
{% else %}
|
|
<a href="{{ route('accounts.show',journal.source_account_id) }}">{{ journal.source_account_name }}</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if journal.destination_account_type == 'Cash account' %}
|
|
<span class="text-success">(cash)</span>
|
|
{% else %}
|
|
<a href="{{ route('accounts.show',journal.destination_account_id) }}">{{ journal.destination_account_name }}</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
</div>
|
|
<div class="box-footer">
|
|
<input type="submit" name="submit" value="{{ trans('form.delete_all_permanently') }}" class="btn btn-danger pull-right"/>
|
|
<a href="{{ route('index') }}" class="btn-default btn">{{ trans('form.cancel') }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|