mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 05:29:12 -06:00
71 lines
3.4 KiB
Twig
71 lines
3.4 KiB
Twig
{% extends "./layout/default" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, journals) }}
|
|
{% 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>
|
|
{{ sourceAccount(journal)|raw }}
|
|
</td>
|
|
<td>
|
|
{{ destinationAccount(journal)|raw }}
|
|
</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 %}
|