<table id="tableauMontants">
    <thead>
        <tr>
            <th>Frais nettoyé</th>
            <th>Heures nettoyé</th>
            <th>Montant HT nettoyé</th>
            <th>Montant TTC nettoyé</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>
                {% set frais_nettoye = 243000 %}
                {{ frais_nettoye | number_format(0, '.', ' ') }}
            </td>
            <td>
                {% set heures_nettoye = 10000 %}
                {{ heures_nettoye | number_format(0, '.', ' ') }}
            </td>
            <td>
                {% set montant_ht_nettoye = frais_nettoye + heures_nettoye %}
                {{ montant_ht_nettoye | number_format(0, '.', ' ') }}
            </td>
            <td class="montant_ttc">
                {% set montant_ttc_nettoye = montant_ht_nettoye * 1.10 %}
                {{ montant_ttc_nettoye | number_format(0, '.', ' ') }}
            </td>
        </tr>
    </tbody>
</table>

<!-- Titre sous la colonne Montant TTC nettoyé -->
<div id="totalMontantTTC">
    <h3>Total de la colonne Montant TTC nettoyé: <span id="totalValue">0</span></h3>
</div>
