Hi,
I can't see no "roster_squad" or "roster_country" in your snippet. So those fields won't be displayed.
But another think is that "roster_position" and "roster_rank" are in two diffrent sections, so TBS will display alternatively the one and the other.
If you want to diplsy both on two rows, you have to code:
<tr>
<td class="cell_body">[roster.roster_position;block=tr;extend=1]</td>
</tr>
<tr>
<td class="cell_body">[roster.roster_rank]</td>
</tr>
|