Fix small issue with piggy banks.

This commit is contained in:
James Cole
2017-01-01 16:55:18 +01:00
parent ecbc0c1778
commit 04290bf9b6
8 changed files with 45 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
<table class="table table-hover table-condensed" id="sortable">
<table class="table table-hover table-condensed" id="sortable-piggy">
<tbody>
{% for piggyBank in piggyBanks %}
<tr data-id="{{ piggyBank.id }}">

View File

@@ -9,12 +9,10 @@
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'piggyBanks'|_ }}</h3></div>
<div class="box-body table-responsive no-padding">
{% include 'list/piggy-banks' %}
<h3 class="box-title">{{ 'piggyBanks'|_ }}</h3>
</div>
<div class="box-footer">
<a href="{{ route('piggy-banks.create') }}" class="btn btn-success pull-right">{{ 'new_piggy_bank'|_ }}</a>
<div class="box-body">
{% include 'list/piggy-banks' %}
</div>
</div>
</div>