Hotfix t-shirt sizes

This commit is contained in:
binamkayastha 2017-12-13 05:55:43 -05:00
parent 0354da724d
commit 9753bbf7e7

View file

@ -172,20 +172,23 @@
<table id="shirts" class="table table-striped table-hover table-condensed sortable"> <table id="shirts" class="table table-striped table-hover table-condensed sortable">
<thead> <thead>
<tr> <tr>
<th>XXS</th>
<th>XS</th> <th>XS</th>
<th>S</th> <th>S</th>
<th>M</th> <th>M</th>
<th>L</th> <th>L</th>
<th>XL</th> <th>XXL</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>{{ shirt_count['xxs'] }}</td>
<td>{{ shirt_count['xs'] }}</td> <td>{{ shirt_count['xs'] }}</td>
<td>{{ shirt_count['s'] }}</td> <td>{{ shirt_count['s'] }}</td>
<td>{{ shirt_count['m'] }}</td> <td>{{ shirt_count['m'] }}</td>
<td>{{ shirt_count['l'] }}</td> <td>{{ shirt_count['l'] }}</td>
<td>{{ shirt_count['xl'] }}</td> <td>{{ shirt_count['xl'] }}</td>
<td>{{ shirt_count['xxl'] }}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>