Fix column width in GST Tax Breakup (#10230)
This commit is contained in:
parent
317888211a
commit
578624db1f
@ -2,14 +2,12 @@
|
|||||||
<table class="table table-bordered table-hover">
|
<table class="table table-bordered table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
{% set i = 0 %}
|
|
||||||
{% for key in headers %}
|
{% for key in headers %}
|
||||||
{% if i==0 %}
|
{% if loop.first %}
|
||||||
<th style="min-width: 120px;" class="text-left">{{ key }}</th>
|
<th style="min-width: 120px;" class="text-left">{{ key }}</th>
|
||||||
{% else %}
|
{% else %}
|
||||||
<th style="min-width: 80px;" class="text-right">{{ key }}</th>
|
<th style="min-width: 80px;" class="text-right">{{ key }}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% set i = i + 1 %}
|
|
||||||
{% endfor%}
|
{% endfor%}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user