mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 01:16:46 -06:00
42 lines
1.8 KiB
Twig
42 lines
1.8 KiB
Twig
{% extends './layout/default' %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, category) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form method="POST" action="{{ route('categories.destroy',category.id) }}" accept-charset="UTF-8" class="form-horizontal" id="destroy">
|
|
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
|
<div class="row">
|
|
<div class="col-lg-6 col-lg-offset-3 col-md-12 col-sm-12">
|
|
<div class="box box-danger">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ trans('form.delete_category', {'name': category.name}) }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<p class="text-danger">
|
|
{{ trans('form.permDeleteWarning') }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ trans('form.category_areYouSure', {'name': category.name}) }}
|
|
</p>
|
|
|
|
<p>
|
|
{% if category.transactionjournals.count() > 0 %}
|
|
{{ Lang.choice('form.category_keep_transactions', category.transactionjournals.count(), {count: category.transactionjournals.count() }) }}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
<div class="box-footer">
|
|
<input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" class="btn btn-danger pull-right"/>
|
|
<a href="{{ URL.previous() }}" class="btn-default btn">{{ trans('form.cancel') }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
{% endblock %}
|