Files
firefly-iii/resources/views/v1/accounts/show.twig

213 lines
9.2 KiB
Twig
Raw Normal View History

2016-11-06 08:11:43 +01:00
{% extends "./layout/default" %}
2015-06-19 20:59:14 +02:00
{% block breadcrumbs %}
2018-02-09 16:47:01 +01:00
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, account, start, end) }}
2015-06-19 20:59:14 +02:00
{% endblock %}
2015-05-01 22:44:35 +02:00
{% block content %}
2018-03-25 20:52:21 +02:00
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">
2019-12-30 14:41:16 +01:00
{{ trans('firefly.chart_account_in_period', {
balance: formatAmountBySymbol(balance, currency.symbol, currency.decimal_places, true),
name: account.name, start: start.formatLocalized(monthAndDayFormat), end: end.formatLocalized(monthAndDayFormat) })|raw }}
</h3>
<div class="box-tools pull-right">
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i></button>
<ul class="dropdown-menu" role="menu">
<li><a href="{{ route('accounts.edit', account.id) }}"><i class="fa fa-pencil fa-fw"></i> {{ 'edit'|_ }}</a></li>
<li><a href="{{ route('accounts.delete', account.id) }}"><i class="fa fa-trash fa-fw"></i> {{ 'delete'|_ }}</a></li>
</ul>
</div>
</div>
</div>
<div class="box-body">
<div>
<canvas id="overview-chart" style="width:100%;height:400px;" height="400" width="100%"></canvas>
</div>
</div>
</div>
</div>
</div>
{% if not showAll and isLiability %}
2018-03-25 18:26:35 +02:00
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
2018-03-25 18:26:35 +02:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">pay-off by date</h3>
2015-05-01 22:44:35 +02:00
</div>
2018-03-25 18:26:35 +02:00
<div class="box-body">
Content
2018-03-25 18:26:35 +02:00
</div>
2015-06-22 18:50:54 +02:00
</div>
2015-05-01 22:44:35 +02:00
</div>
</div>
{% endif %}
{% if not showAll and not isLiability %}
2018-03-25 18:26:35 +02:00
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'expenses_by_category'|_ }}</h3>
</div>
<div class="box-body">
<div style="width:100%;margin:0 auto;">
<canvas id="account-cat-out" style="width:100%;height:250px;" height="250"></canvas>
</div>
2016-11-20 18:31:29 +01:00
</div>
</div>
</div>
2018-03-25 18:26:35 +02:00
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'expenses_by_budget'|_ }}</h3>
</div>
<div class="box-body">
<div style="width:100%;margin:0 auto;">
<canvas id="account-budget-out" style="width:100%;height:250px;" height="250"></canvas>
</div>
2016-11-20 18:31:29 +01:00
</div>
</div>
</div>
2018-03-25 18:26:35 +02:00
<div class="col-lg-4 col-md-6 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'income_by_category'|_ }}</h3>
</div>
<div class="box-body">
<div style="width:100%;margin:0 auto;">
<canvas id="account-cat-in" style="width:100%;height:250px;" height="250"></canvas>
</div>
2016-11-20 18:31:29 +01:00
</div>
</div>
</div>
</div>
2018-03-25 18:26:35 +02:00
{% endif %}
2019-12-28 19:49:33 +01:00
<div class="row">
2019-12-30 14:41:16 +01:00
{% if(location) %}
2019-12-28 19:49:33 +01:00
<div class="col-lg-6">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'location'|_ }}</h3>
</div>
<div class="box-body">
2019-12-30 14:41:16 +01:00
<div id="location_map" style="width:100%;height:300px;"></div>
2019-12-28 19:49:33 +01:00
</div>
</div>
</div>
2019-12-30 14:41:16 +01:00
{% endif %}
2019-12-28 19:49:33 +01:00
{% if account.notes.count == 1 %}
<div class="col-lg-6">
2018-03-25 20:42:56 +02:00
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'notes'|_ }}</h3>
</div>
<div class="box-body">
{{ account.notes.first.text|markdown }}
</div>
2017-12-30 21:04:04 +01:00
</div>
</div>
2019-12-28 19:49:33 +01:00
{% endif %}
</div>
2017-12-30 21:04:04 +01:00
2015-06-22 18:50:54 +02:00
<div class="row">
<div class="{% if periods|length > 0 %}col-lg-10 col-md-8 col-sm-12{% else %}col-lg-12 col-md-12 col-sm-12{% endif %}">
2015-06-22 18:50:54 +02:00
<div class="box">
<div class="box-header with-border">
2019-12-30 14:41:16 +01:00
<h3 class="box-title">{{ 'transactions'|_ }} ({{ formatAmountBySymbol(balance, currency.symbol, currency.decimal_places, true)|raw }})</h3>
2015-06-22 18:50:54 +02:00
</div>
2016-04-23 18:53:16 +02:00
<div class="box-body">
2017-12-03 09:01:39 +01:00
{% if account.accountType.type == 'Asset account' %}
{% set showReconcile = true %}
{% else %}
{% set showReconcile = false %}
{% endif %}
2019-05-29 18:30:52 +02:00
{% include 'list.groups' %}
2018-02-09 16:47:01 +01:00
<p>
<i class="fa fa-calendar"></i>
{% if periods|length > 0 %}
2018-03-25 18:26:35 +02:00
<a href="{{ route('accounts.show.all', [account.id]) }}">
{{ 'show_all_no_filter'|_ }}
</a>
{% else %}
<a href="{{ route('accounts.show', [account.id]) }}">
{{ 'show_the_current_period_and_overview'|_ }}
</a>
{% endif %}
2018-02-09 16:47:01 +01:00
</p>
2015-06-22 18:50:54 +02:00
</div>
2015-05-01 22:44:35 +02:00
</div>
2015-06-22 17:55:37 +02:00
</div>
{% if periods|length > 0 %}
2017-06-30 07:17:25 +02:00
<div class="col-lg-2 col-md-4 col-sm-12 col-xs-12">
2018-09-10 20:24:19 +02:00
{% include 'list.periods' %}
</div>
{% endif %}
2015-05-01 22:44:35 +02:00
</div>
2015-06-22 18:50:54 +02:00
{% endblock %}
2015-05-01 22:44:35 +02:00
2015-06-22 18:50:54 +02:00
{% block scripts %}
2020-01-04 11:00:44 +01:00
<script type="text/javascript" nonce="{{ JS_NONCE }}">
2018-03-25 18:26:35 +02:00
2019-12-28 19:49:33 +01:00
// location stuff
{% if location %}
var latitude = {{ location.latitude|default("52.3167") }};
var longitude = {{ location.longitude|default("5.5500") }};
var zoomLevel = {{ location.zoom_level|default("6") }};
var doPlaceMarker = true;
// token for Mapbox:
var mapboxToken = "{{ config('firefly.mapbox_api_key') }}";
2019-12-28 19:49:33 +01:00
{% endif %}
var showAll = true;
currencySymbol = "{{ currency.symbol }}";
var accountID = {{ account.id }};
var chartUri = '{{ chartUri }}';
{% if not showAll %}
showAll = false;
2016-11-20 18:31:29 +01:00
// uri's for charts:
2018-03-25 20:52:21 +02:00
2018-03-25 18:26:35 +02:00
var incomeCategoryUri = '{{ route('chart.account.income-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}';
var expenseCategoryUri = '{{ route('chart.account.expense-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}';
var expenseBudgetUri = '{{ route('chart.account.expense-budget', [account.id, start.format('Ymd'), end.format('Ymd')]) }}';
2018-03-11 13:26:11 +01:00
var drawVerticalLine = '';
{# render vertical line with text "today" #}
{% if start.lte(today) and end.gte(today) %}
drawVerticalLine = '{{ today.formatLocalized(monthAndDayFormat) }}';
{% endif %}
2018-03-25 18:26:35 +02:00
{% endif %}
2018-03-11 13:26:11 +01:00
2015-06-22 18:50:54 +02:00
</script>
2019-12-28 19:49:33 +01:00
{% if location %}
2020-01-04 11:16:14 +01:00
<script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
2019-12-28 19:49:33 +01:00
{% endif %}
2020-01-04 11:16:14 +01:00
<script type="text/javascript" src="v1/js/lib/Chart.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
<script type="text/javascript" src="v1/js/lib/chartjs-plugin-annotation.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
<script type="text/javascript" src="v1/js/ff/charts.defaults.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
<script type="text/javascript" src="v1/js/ff/charts.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
<script src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
<script src="v1/js/lib/jquery.color-2.1.2.min.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
<script src="v1/js/ff/accounts/show.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
2019-08-04 19:54:31 +02:00
{# required for groups.twig #}
2020-01-04 11:16:14 +01:00
<script type="text/javascript" src="v1/js/ff/list/groups.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
2015-06-22 18:50:54 +02:00
{% endblock %}
2019-12-28 19:49:33 +01:00
{% block styles %}
{% if location %}
<link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}"/>
{% endif %}
{% endblock %}