ComptaClub/templates/comptability/year_listing.html

41 lines
1.8 KiB
HTML
Raw Normal View History

2020-02-17 21:38:47 +01:00
{% 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>
2022-04-25 10:19:54 +02:00
<th class="centered">Année</th>
2020-02-21 21:47:09 +01:00
<th class="centered"># Transactions</th>
2020-02-17 21:38:47 +01:00
<th class="centered" colspan="2">Suivi</th>
<th class="centered">Export SPF Finance</th>
</thead>
2020-02-21 08:50:12 +01:00
{% for accounting_year in year_list %}
2020-02-17 21:38:47 +01:00
<tr>
2022-01-07 12:29:22 +01:00
<td class="centered"><a href="{% url 'by_year' accounting_year.0 %}">{{ accounting_year.0 }}</a></td>
2020-02-21 08:50:12 +01:00
<td class="push-right">{{ accounting_year.1 }}</td>
2022-01-07 12:29:22 +01:00
<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>
2020-02-17 21:38:47 +01:00
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}