Browse Source

Minor change on payment howto

Fabs 10 years ago
parent
commit
bf180c8fc8

+ 5 - 3
coin/billing/templates/billing/invoice.html

@@ -37,7 +37,7 @@
     </tbody>
 </table>
 
-<h3>Réglement</h3>
+<h4>Réglement</h4>
 
 {% if invoice.payments.exists %}
     <table id="invoice_payments" class="invoice-table full-width">
@@ -65,8 +65,10 @@
 {% endif %}
 
 {% if invoice.amount_remaining_to_pay > 0 %}
-    <div class="panel">
-        {% include "billing/payment_howto.html" %}
+    <div id="payment_howto" class="panel">
+        <small>
+            {% include "billing/payment_howto.html" %}
+        </small>
     </div>
 {% endif %}
 

+ 2 - 0
coin/billing/templates/billing/payment_howto.html

@@ -1,5 +1,6 @@
 <p><strong>Merci de préférer si possible le paiement par virement</strong></p>
 
+<p>
 <strong>Virement</strong><br />
 Titulaire du compte : ILLYSE<br/>
 RIB : 42559 00012 41020023285 19<br/>
@@ -8,3 +9,4 @@ Merci de faire figurer le code suivant sur votre virement : <strong>#{{ invoice.
 <br /><br />
 <strong>Chèque</strong><br />
 Paiement par chèque à l'ordre de "Association ILLYSE" envoyé à l'adresse : Association ILLYSE, c/o Jean-François MOURGUES, 225 route de Genas, 69100 Villeurbanne
+</p>

+ 4 - 0
coin/static/css/illyse.css

@@ -156,3 +156,7 @@ table.invoice-table td.total {
 #member_invoices tr.total>td.right {
     text-align:right;
 }
+
+#payment_howto p {
+    font-size:0.7rem;
+}