blob: 8bd80b6af4528c7f0e0f5bbbe1036fcb121ac2ed (
plain)
1
2
3
4
5
6
7
8
9
10
|
<h1>Scheda di [% iscritto.nome %]</h1> <dl> <dt>Indirizzo:</dt><dd>[% iscritto.email %]</dd> <dt>Note:</dt><dd>[% iscritto.note %]</dd> <dt>Pagamenti:</dt><dd><ol> [%- FOREACH pag IN iscritto.pagamenti %] <li>[% pag.prezzo %] il [% pag.data_pagamento %]</li> [% END -%] </ol></dd> </dl>
|