mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-23 15:03:14 -06:00
44 lines
1.5 KiB
Twig
44 lines
1.5 KiB
Twig
{% extends "./layout/default.twig" %}
|
|
{% block content %}
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, budget) }}
|
|
{{ Form.open({'class' : 'form-horizontal','id' : 'destroy','url' : route('budgets.destroy',budget.id) }) }}
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-12 col-sm-12">
|
|
<div class="panel panel-red">
|
|
<div class="panel-heading">
|
|
Delete budget "{{ budget.name}}"
|
|
</div>
|
|
<div class="panel-body">
|
|
<p>
|
|
Are you sure that you want to delete budget "{{ budget.name }}"?
|
|
</p>
|
|
|
|
{% if budget.transactionjournals|length > 0 %}
|
|
<p class="text-info">
|
|
Budget "{{ budget.name }}" still has {{ budget.transactionjournals|length }} transactions connected
|
|
to it. These will <strong>not</strong> be removed but will lose their connection to this budget.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
<button type="submit" class="btn btn-default btn-danger">Delete permanently</button>
|
|
<a href="{{URL.previous()}}" class="btn-default btn">Cancel</a >
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<div class="col-sm-8">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
{% endblock %}
|