Add buttons to views

This commit is contained in:
James Cole
2018-01-13 18:01:53 +01:00
parent a5515ac89f
commit 7d96b281b6
8 changed files with 45 additions and 12 deletions

View File

@@ -13,8 +13,6 @@
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ title }}</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>
@@ -25,8 +23,14 @@
</div>
</div>
<div class="box-body table-responsive no-padding">
<div style="padding:8px;">
<a class="btn btn-success" href="{{ route('bills.create') }}"><i class="fa fa-plus fa-fw"></i> {{ 'create_new_bill'|_ }}</a>
</div>
{% include 'list/bills' %}
</div>
<div class="box-footer">
<a class="btn btn-success" href="{{ route('bills.create') }}"><i class="fa fa-plus fa-fw"></i> {{ 'create_new_bill'|_ }}</a>
</div>
</div>
</div>
</div>