52 lines
2.6 KiB
XML
52 lines
2.6 KiB
XML
<metal:block use-macro="main_template">
|
|
<div metal:fill-slot="content">
|
|
|
|
<table class="table table-condensed table-bordered" cellspacing="0" width="100%" tal:condition="justifs_manquant">
|
|
<tr tal:repeat="justif justifs_manquant">
|
|
<td tal:condition="justif.valide==0">
|
|
<b>${justif.libelle}</b>
|
|
<span tal:condition="justif.conditions"><br />(${justif.conditions})</span>
|
|
</td>
|
|
<td tal:condition="justif.valide!=0" class="success"><b>${justif.libelle}</b></td>
|
|
<td tal:condition="justif.libelle_fic">${justif.libelle_fic}</td>
|
|
<td tal:condition="not justif.libelle_fic">
|
|
<a tal:condition="justif.nom_fic" href="${request.application_url}/download/${cd_cli}/${justif.nom_fic}"
|
|
target="popup"
|
|
onclick="window.open('${request.application_url}/download/${cd_cli}/${justif.nom_fic},'popup','width=900,height=768'); return false;">
|
|
${justif.nom_fic}
|
|
</a>
|
|
<a tal:condition="not justif.nom_fic" href="${request.application_url}/doc_upload/${justif.no_ligne}/${justif.cd_cli}"> Télécharger</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Justificatifs déjà téléchargés</h2>
|
|
<table class="table table-condensed table-bordered" cellspacing="0" width="100%" tal:condition="justifs">
|
|
<tr tal:repeat="justif justifs">
|
|
<td tal:condition="justif.valide==0">
|
|
<b>${justif.libelle}
|
|
</td>
|
|
<td tal:condition="justif.valide!=0" class="success"><b>${justif.libelle}</b></td>
|
|
<td tal:condition="justif.libelle_fic">${justif.libelle_fic}</td>
|
|
<td tal:condition="not justif.libelle_fic">
|
|
<a tal:condition="justif.nom_fic" href="${request.application_url}/download/${cd_cli}/${justif.nom_fic}"
|
|
target="popup"
|
|
onclick="window.open('${request.application_url}/download/${cd_cli}/${justif.nom_fic},'popup','width=900,height=768'); return false;">
|
|
${justif.nom_fic}
|
|
</a>
|
|
<a tal:condition="not justif.nom_fic" href="${request.application_url}/doc_upload/${justif.no_ligne}/${justif.cd_cli}"> Télécharger</a>
|
|
</td>
|
|
<td>${justif.taille_fic} Ko</td>
|
|
<td>${justif.cd_uti}</td>
|
|
<td tal:condition="justif.valide==0" >
|
|
<a href="${request.application_url}/doc_edit/${justif.no_ligne}/${justif.cd_cli}">Modifier</a>
|
|
</td>
|
|
<td tal:condition="justif.valide!=0" >Validé</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
</div>
|
|
|
|
</metal:block>
|
|
|