2015-05-02 02:06:07 -05:00
|
|
|
{% extends "./layout/default.twig" %}
|
2015-06-19 13:59:14 -05:00
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2015-05-02 02:06:07 -05:00
|
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, budget) }}
|
2015-06-19 13:59:14 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2015-05-02 02:06:07 -05:00
|
|
|
{{ Form.model(budget, {'class' : 'form-horizontal','id' : 'update','url' : route('budgets.update',budget.id) } ) }}
|
2015-06-22 00:24:44 -05:00
|
|
|
<input type="hidden" name="id" value="{{ budget.id }}"/>
|
2015-05-02 02:06:07 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
2015-06-20 00:29:25 -05:00
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
2015-06-20 02:54:01 -05:00
|
|
|
<h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
2015-06-20 00:29:25 -05:00
|
|
|
<div class="box-body">
|
2015-05-02 02:06:07 -05:00
|
|
|
{{ ExpandedForm.checkbox('active') }}
|
|
|
|
{{ ExpandedForm.text('name') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
|
|
|
<!-- panel for options -->
|
2015-06-20 00:29:25 -05:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
2015-06-20 02:54:01 -05:00
|
|
|
<h3 class="box-title">{{ 'options'|_ }}</h3>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
2015-06-20 00:29:25 -05:00
|
|
|
<div class="box-body">
|
2015-06-22 00:24:44 -05:00
|
|
|
{{ ExpandedForm.optionsList('update','budget') }}
|
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
2015-07-26 00:39:04 -05:00
|
|
|
<button type="submit" class="btn pull-right btn-success">{{ 'update_budget'|_ }}</button>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-06-22 00:24:44 -05:00
|
|
|
{{ Form.close|raw }}
|
2015-05-02 02:06:07 -05:00
|
|
|
|
|
|
|
{% endblock %}
|