Browse Source

Utilise le filter tick pour afficher les booléens de custom invoice

override_mails
Hugo LEVY-FALK 8 years ago
parent
commit
e38ae33c6e
  1. 3
      cotisations/templates/cotisations/aff_custom_invoice.html

3
cotisations/templates/cotisations/aff_custom_invoice.html

@ -25,6 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load i18n %} {% load i18n %}
{% load acl %} {% load acl %}
{% load logs_extra %} {% load logs_extra %}
{% load design %}
<div class="table-responsive"> <div class="table-responsive">
{% if custom_invoice_list.paginator %} {% if custom_invoice_list.paginator %}
@ -65,7 +66,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<td>{{ invoice.payment }}</td> <td>{{ invoice.payment }}</td>
<td>{{ invoice.date }}</td> <td>{{ invoice.date }}</td>
<td>{{ invoice.id }}</td> <td>{{ invoice.id }}</td>
<td>{{ invoice.paid }}</td> <td>{{ invoice.paid|tick }}</td>
<td> <td>
<div class="dropdown"> <div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="editinvoice" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <button class="btn btn-default dropdown-toggle" type="button" id="editinvoice" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">

Loading…
Cancel
Save