Files
firefly-iii/resources/twig/bills/index.twig

39 lines
1.4 KiB
Twig
Raw Normal View History

2015-05-02 12:51:02 +02:00
{% extends "./layout/default.twig" %}
2015-06-19 20:59:14 +02:00
{% block breadcrumbs %}
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
{% endblock %}
2015-05-02 12:51:02 +02:00
{% block content %}
<div class="row">
<div class="col-lg-12 col-sm-12 col-md-12">
2015-06-20 07:29:25 +02:00
<div class="box">
<div class="box-header with-border">
2015-06-20 09:54:01 +02:00
<h3 class="box-title">{{ title }}</h3>
2015-05-02 12:51:02 +02:00
<!-- ACTIONS MENU -->
<div class="pull-right">
<div class="btn-group">
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown">
{{ 'actions'|_ }}
2015-05-02 12:51:02 +02:00
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li><a href="{{route('bills.create')}}"><i class="fa fa-plus fa-fw"></i> New bill</a></li>
</ul>
</div>
</div>
</div>
{% include 'list/bills.twig' %}
</div>
</div>
</div>
{% endblock %}
2015-05-08 17:03:20 +02:00
{% block styles %}
<link rel="stylesheet" href="css/bootstrap-sortable.css" type="text/css" media="all" />
{% endblock %}
{% block scripts %}
<script type="text/javascript" src="js/bootstrap-sortable.js"></script>
{% endblock %}