mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
Initial split for report options.
This commit is contained in:
parent
21fb426524
commit
28eb54dc96
@ -604,8 +604,8 @@ return [
|
|||||||
'in' => 'In',
|
'in' => 'In',
|
||||||
'out' => 'Out',
|
'out' => 'Out',
|
||||||
'topX' => 'top :number',
|
'topX' => 'top :number',
|
||||||
'show_full_list' => 'Show entire list',
|
'show_full_list' => 'Show entire list',
|
||||||
'show_only_top' => 'Show only top :number',
|
'show_only_top' => 'Show only top :number',
|
||||||
'sum_of_year' => 'Sum of year',
|
'sum_of_year' => 'Sum of year',
|
||||||
'sum_of_years' => 'Sum of years',
|
'sum_of_years' => 'Sum of years',
|
||||||
'average_of_year' => 'Average of year',
|
'average_of_year' => 'Average of year',
|
||||||
@ -630,6 +630,9 @@ return [
|
|||||||
'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end',
|
'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end',
|
||||||
'no_audit_activity' => 'No activity was recorded on account <a href=":url" title=":account_name">:account_name</a> between :start and :end.',
|
'no_audit_activity' => 'No activity was recorded on account <a href=":url" title=":account_name">:account_name</a> between :start and :end.',
|
||||||
'audit_end_balance' => 'Account balance of <a href=":url" title=":account_name">:account_name</a> at the end of :end was: :balance',
|
'audit_end_balance' => 'Account balance of <a href=":url" title=":account_name">:account_name</a> at the end of :end was: :balance',
|
||||||
|
'reports_extra_options' => 'Extra options',
|
||||||
|
'report_has_no_extra_options' => 'This report has no extra options',
|
||||||
|
'reports_submit' => 'View report',
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Chart',
|
'chart' => 'Chart',
|
||||||
|
@ -5,17 +5,19 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<form class="form-horizontal" id="report-form" action="{{ route('reports.index') }}" method="post">
|
||||||
<div class="box">
|
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<div class="box-header with-border">
|
<div class="box">
|
||||||
<h3 class="box-title">{{ 'reports'|_ }}</h3>
|
<div class="box-header with-border">
|
||||||
</div>
|
<h3 class="box-title">{{ 'reports'|_ }}</h3>
|
||||||
<div class="box-body">
|
</div>
|
||||||
<p class="text-info">
|
<div class="box-body">
|
||||||
{{ 'more_info_help'|_ }}
|
<p class="text-info">
|
||||||
</p>
|
{{ 'more_info_help'|_ }}
|
||||||
<form class="form-horizontal" id="report-form" action="{{ route('reports.index') }}" method="post">
|
</p>
|
||||||
|
|
||||||
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputReportType" class="col-sm-3 control-label">{{ 'report_type'|_ }}</label>
|
<label for="inputReportType" class="col-sm-3 control-label">{{ 'report_type'|_ }}</label>
|
||||||
@ -81,16 +83,34 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">{{ 'reports_extra_options'|_ }}</h3>
|
||||||
|
</div>
|
||||||
|
<div class="box-body">
|
||||||
|
<p id="no_extra_options">
|
||||||
|
<em>{{ 'report_has_no_extra_options'|_ }}</em>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="box">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">{{ 'reports_submit'|_ }}</h3>
|
||||||
|
</div>
|
||||||
|
<div class="box-body">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="col-sm-offset-3 col-sm-9">
|
<div class="col-sm-offset-3 col-sm-9">
|
||||||
<button type="submit" class="btn btn-default">{{ 'submit'|_ }}</button>
|
<button type="submit" class="btn btn-default">{{ 'submit'|_ }}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
Loading…
Reference in New Issue
Block a user