mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
New CC help text.
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
{!! ExpandedForm::balance('openingBalance') !!}
|
{!! ExpandedForm::balance('openingBalance') !!}
|
||||||
{!! ExpandedForm::date('openingBalanceDate', date('Y-m-d')) !!}
|
{!! ExpandedForm::date('openingBalanceDate', date('Y-m-d')) !!}
|
||||||
{!! ExpandedForm::select('accountRole',Config::get('firefly.accountRoles')) !!}
|
{!! ExpandedForm::select('accountRole',Config::get('firefly.accountRoles'),null,['helpText' => 'Any extra options resulting from your choice can be set later.']) !!}
|
||||||
{!! ExpandedForm::balance('virtualBalance') !!}
|
{!! ExpandedForm::balance('virtualBalance') !!}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@@ -38,6 +38,18 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- panel for credit card options -->
|
||||||
|
@if(Session::get('preFilled')['accountRole'] == 'ccAsset')
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<i class="fa fa-credit-card"></i> Credit card options
|
||||||
|
</div>
|
||||||
|
<div class="panel-body">
|
||||||
|
Will be here.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
<!-- panel for options -->
|
<!-- panel for options -->
|
||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
|
@@ -2,6 +2,9 @@
|
|||||||
<label for="{{{$options['id']}}}" class="col-sm-4 control-label">{{{$label}}}</label>
|
<label for="{{{$options['id']}}}" class="col-sm-4 control-label">{{{$label}}}</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
{!! Form::select($name, $list, $selected , $options ) !!}
|
{!! Form::select($name, $list, $selected , $options ) !!}
|
||||||
|
@if(isset($options['helpText']))
|
||||||
|
<p class="help-block">{{$options['helpText']}}</p>
|
||||||
|
@endif
|
||||||
@include('form.feedback')
|
@include('form.feedback')
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user