mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Quick links.
This commit is contained in:
@@ -374,8 +374,16 @@ return [
|
||||
// 'reportForMonth' => 'Montly report for :month',
|
||||
// 'reportForMonthShared' => 'Montly report for :month (including shared accounts)',
|
||||
|
||||
'report_default' => 'Default financial report for :start until :end',
|
||||
|
||||
'report_default' => 'Default financial report for :start until :end',
|
||||
'quick_link_reports' => 'Quick links',
|
||||
'quick_link_default_report' => 'Default financial report',
|
||||
'report_this_month_shared' => 'Current month, all shared accounts',
|
||||
'report_this_month_non_shared' => 'Current month, all not-shared accounts',
|
||||
'report_this_year_shared' => 'Current year, all shared accounts',
|
||||
'report_this_year_non_shared' => 'Current year, all not-shared accounts',
|
||||
'report_all_time_shared' => 'All-time, all shared accounts',
|
||||
'report_all_time_non_shared' => 'All-time, all not-shared accounts',
|
||||
'reports_can_bookmark' => 'Remember that reports can be bookmarked.',
|
||||
'incomeVsExpenses' => 'Income vs. expenses',
|
||||
'accountBalances' => 'Account balances',
|
||||
'balanceStartOfYear' => 'Balance at start of year',
|
||||
|
@@ -58,9 +58,12 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<label class="checkbox-inline">
|
||||
<input type="checkbox" class="budget-checkbox" name="budgets[]" value="0"> {{ 'noBudget'|_ }}
|
||||
</label>
|
||||
{% for budget in budgets %}
|
||||
<label class="checkbox-inline">
|
||||
<input type="checkbox" name="budgets[]" value="{{ budget.id }}"> {{ budget.name }}
|
||||
<input type="checkbox" class="budget-checkbox" name="budgets[]" value="{{ budget.id }}"> {{ budget.name }}
|
||||
</label>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
@@ -82,6 +82,43 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
|
||||
<div class="box">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">{{ 'quick_link_reports'|_ }}</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<h4>{{ 'quick_link_default_report'|_ }}</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">{{ 'report_this_month_shared'|_ }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">{{ 'report_this_month_non_shared'|_ }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">{{ 'report_this_year_shared'|_ }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">{{ 'report_this_year_non_shared'|_ }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">{{ 'report_all_time_shared'|_ }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">{{ 'report_all_time_non_shared'|_ }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
<em>{{ 'reports_can_bookmark'|_ }}</em>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user