Gst TAx Breakup in Quotation

        <th class="text-left">CGST</th>
        <th class="text-left">SGST</th>
        <th class="text-left">IGST</th>
    </tr>
    {%- for row in doc.items -%}
    <tr>
        
        <td class="sgst{{loop.index}}">Nil</td>
        <td class="cgst{{loop.index}}">Nil</td>
        <td class="igst{{loop.index}}">Nil</td>
    </tr>
    {%- endfor -%}
</tbody>

Hi
I expected this update v8.3 to include tax breakups in quatations also
any possibilities
i have coded an html one
this is the code
but its not rendering in pdf(values only)
regards
hemanth

<table class="table table-bordered">
<tbody>
    <tr>
        
        <th class="text-left">CGST</th>
        <th class="text-left">SGST</th>
        <th class="text-left">IGST</th>
    </tr>
    {%- for row in doc.items -%}
    <tr>
        
        <td class="sgst{{loop.index}}">Nil</td>
        <td class="cgst{{loop.index}}">Nil</td>
        <td class="igst{{loop.index}}">Nil</td>
    </tr>
    {%- endfor -%}
</tbody>

Please check out this link and the discussion around it:

Thanks

Jay