mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
48 lines
1.8 KiB
Twig
48 lines
1.8 KiB
Twig
{% extends "./layout/default" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, currency) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ Form.model(currency, {'class' : 'form-horizontal','id' : 'update','url' : route('currencies.update',currency.id)}) }}
|
|
|
|
<input type="hidden" name="id" value="{{ currency.id }}"/>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
{{ ExpandedForm.text('name',null,{'maxlength' : 48}) }}
|
|
{{ ExpandedForm.text('symbol',null,{'maxlength' : 8}) }}
|
|
{{ ExpandedForm.text('code',null,{'maxlength' : 3}) }}
|
|
{{ ExpandedForm.integer('decimal_places',null,{'maxlength' : 2,'min': 0,'max': 12}) }}
|
|
{{ ExpandedForm.checkbox('enabled',null) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
|
|
|
{# panel for options #}
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'options'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
{{ ExpandedForm.optionsList('update','currency') }}
|
|
</div>
|
|
<div class="box-footer">
|
|
<button type="submit" class="btn btn-success pull-right">
|
|
{{ 'update_currency'|_ }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{{ Form.close|raw }}
|
|
{% endblock %}
|