Last minute bug fixes.

Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
James Cole
2016-05-20 15:02:52 +02:00
parent 0105456828
commit e10d5e89e5
7 changed files with 1685 additions and 57 deletions

View File

@@ -1,7 +1,8 @@
{% extends "./layout/default.twig" %}
{% block breadcrumbs %}
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, account) }}
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, account, carbon) }}
{% endblock %}
{% block content %}
@@ -25,7 +26,7 @@
</div>
<div class="box-body">
<canvas id="period-specific-period-account" style="width:100%;height:350px;" height="350"></canvas>
<canvas id="period-specific-account" style="width:100%;height:350px;" height="350"></canvas>
</div>
</div>
</div>
@@ -51,11 +52,12 @@
{% block scripts %}
<script type="text/javascript">
var accountID = {{ account.id }};
var dateString = "{{ date }}";
</script>
<script type="text/javascript" src="js/lib/Chart.bundle.min.js"></script>
<script type="text/javascript" src="js/ff/charts.js"></script>
<script src="js/lib/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/lib/jquery.color-2.1.2.min.js" type="text/javascript"></script>
<script src="js/ff/accounts/show.js" type="text/javascript"></script>
<script src="js/ff/accounts/show_with_date.js" type="text/javascript"></script>
<script type="text/javascript" src="js/ff/transactions/list.js"></script>
{% endblock %}