mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-26 09:59:18 +01:00
template
This commit is contained in:
parent
d0c289e3c3
commit
b5c5c9822c
1 changed files with 13 additions and 15 deletions
|
@ -1,20 +1,8 @@
|
|||
<md-toolbar flex="100" layout="column" layout-gt-md="row" layout-align="center center">
|
||||
<h2>
|
||||
<md-input-container>
|
||||
<md-select data-ng-model="period">
|
||||
<md-option data-ng-repeat="period in periods">{{period}}</md-option>
|
||||
</md-select>
|
||||
</md-input-container>
|
||||
</h2>
|
||||
</md-toolbar>
|
||||
|
||||
<md-content flex="100" layout="column" layout-gt-md="row">
|
||||
<md-card flex="20">
|
||||
<md-input-container>
|
||||
<md-select multiple="true" data-ng-model="graphed_accounts">
|
||||
<md-option data-ng-repeat="account in accounts">{{account}}</md-option>
|
||||
</md-select>
|
||||
</md-input-container>
|
||||
<select multiple="true" data-ng-model="graphed_accounts" style="height: 100%">
|
||||
<option data-ng-repeat="account in accounts">{{account}}</option>
|
||||
</select>
|
||||
</md-card>
|
||||
<md-card flex="75">
|
||||
<nvd3-multi-bar-chart
|
||||
|
@ -34,6 +22,16 @@
|
|||
</md-card>
|
||||
</md-content>
|
||||
|
||||
<md-toolbar flex="100" layout="column" layout-gt-md="row" layout-align="center center">
|
||||
<h2>
|
||||
<md-input-container>
|
||||
<md-select data-ng-model="period">
|
||||
<md-option data-ng-repeat="period in periods">{{period}}</md-option>
|
||||
</md-select>
|
||||
</md-input-container>
|
||||
</h2>
|
||||
</md-toolbar>
|
||||
|
||||
<md-content flex="100" layout="column" layout-gt-md="row">
|
||||
<md-card flex="48" layout="column"
|
||||
data-ng-repeat="bucket in balance.buckets">
|
||||
|
|
Loading…
Reference in a new issue