ComptaClub/templates/comptability/year_listing.html

41 lines
1.8 KiB
HTML

{% extends "base.html" %}
{% block page_title %}Années comptables{% endblock %}
{% 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">
<h3>Années comptables</h3>
</div>
<div class="col-md-8 col-md-offset-2">
<table class="table table-striped table-bordered table-condensed col-md-8">
<thead>
<th class="centered">Année</th>
<th class="centered"># Transactions</th>
<th class="centered" colspan="2">Suivi</th>
<th class="centered">Export SPF Finance</th>
</thead>
{% for accounting_year in year_list %}
<tr>
<td class="centered"><a href="{% url 'by_year' accounting_year.0 %}">{{ accounting_year.0 }}</a></td>
<td class="push-right">{{ accounting_year.1 }}</td>
<td class="centered"><a href="{% url 'by_year_bank' accounting_year.0 'bank' %}">Bancaire</a></td>
<td class="centered"><a href="{% url 'by_year_box' accounting_year.0 'box' %}">Caisse</a></td>
<td class="centered"><a href="{% url 'export_simple' accounting_year.0 %}">export</a></td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}