ComptaInde/templates/year_listing.html

36 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div id="page" class=" sidebar_right">
<div class="container">
<div id="frame2">
<div id="content">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1>Années comptables</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-md-offset-3 col-lg-offset-3">
<table class="table table-striped table-bordered table-condensed">
<thead>
<th class="centered">Années</th>
<th class="centered"># transactions</th>
</thead>
{% for object in objects_year %}
<tr>
<td class="centered"><a href="/compta/{{ object.0.year }}">Année {{ object.0.year }}</a></td>
<td class="centered">{{ object.1 }} transactions</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}