+
+<tr>
+ <th colspan="5">Coûts AUF</th>
+ <th id="sous-total-cout" class="montant"></th>
+ <th>EUR</th>
+</tr>
+
+{% for remun in dossier.get_couts_auf %}
+ <tr class="cout">
+ <td>{{ remun.type }}</td>
+ <td>
+ {{ remun.devise }}
+ <input type="hidden" id="taux_devise-{{ remun.id }}"
+ name="taux_devise-{{ remun.id }}"
+ value="{{ remun.taux_devise }}" />
+ </td>
+ <td>
+ <input type="text" id="montant_mois-{{ remun.id }}"
+ name="montant_mois-{{ remun.id }}"
+ value="{{ remun.montant_mois }}" />
+ </td>
+ <td><input type="text" id="montant-{{ remun.id }}"
+ name="cg-montant-{{ remun.id }}"
+ value="{{ remun.montant|default_if_none:'' }}" />
+ </td>
+ <td id="montant_euro_mois-{{ remun.id }}" class="montant">
+ {{ remun.montant_euro_mois }}</td>
+ <td id="montant_euro-{{ remun.id }}" class="montant cumulable">{{ remun.montant_euro }}</td>
+ <td><input type="text" name="cg-precision-{{ remun.id }}"
+ value="{{ remun.precision|default_if_none:'' }}" /></td>
+ </tr>
+{% empty %}