2014-07-30 23:35:50 +02:00
|
|
|
<div class="row-fluid">
|
2014-07-30 20:48:32 +02:00
|
|
|
|
2014-07-30 23:35:50 +02:00
|
|
|
<div class="col-md-12 date">
|
|
|
|
<h2>
|
|
|
|
<button type="button" class="btn btn-primary"
|
|
|
|
data-ng-click="previous_period()">
|
|
|
|
<span class="glyphicon glyphicon-chevron-left"></span>
|
|
|
|
</button>
|
|
|
|
<span>{{now | amDateFormat:'MMMM YYYY'}}</span>
|
|
|
|
<button type="button" class="btn btn-primary"
|
|
|
|
data-ng-click="next_period()">
|
|
|
|
<span class="glyphicon glyphicon-chevron-right"></span>
|
|
|
|
</button>
|
|
|
|
</h2>
|
2014-08-01 22:25:56 +02:00
|
|
|
<h2 class="balance" data-ng-class="{'negative': balance.income_total - balance.expenses_total < 0, 'positive': balance.income_total - balance.expenses_total > 0}">
|
|
|
|
Balance: {{( balance.income_total - balance.expenses_total ) | number:2}} €
|
2014-07-30 23:35:50 +02:00
|
|
|
</h2>
|
|
|
|
</div>
|
2014-07-30 20:48:32 +02:00
|
|
|
|
2014-07-30 23:35:50 +02:00
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">Expenses, total = {{balance.expenses_total | number:2}} €</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<nvd3-pie-chart
|
|
|
|
data="balance.expenses"
|
|
|
|
x="xFunction()"
|
|
|
|
y="yFunction()"
|
|
|
|
id="ExpensesPie"
|
2014-08-09 18:16:10 +02:00
|
|
|
height="300"
|
|
|
|
margin="{left:0,top:0,bottom:0,right:0}"
|
|
|
|
color="color()"
|
2014-07-30 23:35:50 +02:00
|
|
|
tooltips="true"
|
|
|
|
tooltipcontent="toolTipContentFunction()"
|
|
|
|
showLabels="true"
|
|
|
|
labelType="value">
|
|
|
|
<svg></svg>
|
|
|
|
</nvd3-pie-chart>
|
|
|
|
</div>
|
|
|
|
<div class="panel-footer" data-ng-bind-html="balance.expenses | formatLedgerEntries">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">Income, total = {{balance.income_total | number:2}} €</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<nvd3-pie-chart
|
|
|
|
data="balance.income"
|
|
|
|
x="xFunction()"
|
|
|
|
y="yFunction()"
|
|
|
|
id="incomePie"
|
2014-08-09 18:16:10 +02:00
|
|
|
height="300"
|
|
|
|
margin="{left:0,top:0,bottom:0,right:0}"
|
|
|
|
color="color()"
|
2014-07-30 23:35:50 +02:00
|
|
|
tooltips="true"
|
|
|
|
tooltipcontent="toolTipContentFunction()"
|
|
|
|
showLabels="true"
|
|
|
|
labelType="value">
|
|
|
|
<svg></svg>
|
|
|
|
</nvd3-pie-chart>
|
|
|
|
</div>
|
|
|
|
<div class="panel-footer" data-ng-bind-html="balance.income | formatLedgerEntries">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|