1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-23 10:56:35 +02:00

use django_tables2 for transactionTemplate

This commit is contained in:
Pierre-antoine Comby
2020-03-09 20:59:04 +01:00
parent 62573a35df
commit f4fe0c9866
3 changed files with 19 additions and 22 deletions

View File

@ -1,23 +1,7 @@
{% extends "base.html" %}
{% load pretty_money %}
{% load render_table from django_tables2 %}
{% block content %}
<table class="table">
<tr>
<td>ID</td><td>Nom</td>
<td>Destinataire</td>
<td>Montant</td>
<td>Catégorie</td>
</tr>
{% for object in object_list %}
<tr>
<td>{{object.pk}}</td>
<td><a href="{{object.get_absolute_url}}">{{ object.name }}</a></td>
<td>{{ object.destination }}</td>
<td>{{ object.amount | pretty_money }}</td>
<td>{{ object.template_type }}</td>
</tr>
{% endfor %}
</table>
<a class="btn btn-primary" href="{% url 'note:template_create' %}">Créer un bouton</a>
<a class="btn btn-primary text-center" href="{% url 'note:template_create' %}">Créer un bouton</a>
{% render_table table %}
{% endblock %}