BUGFIX: missing <tbody> tag inside a <table>

This commit is contained in:
Régis Hanol 2014-05-13 17:43:56 +02:00
parent 6e0eb89697
commit d11d31acaa
1 changed files with 15 additions and 13 deletions

View File

@ -44,19 +44,21 @@
<td class='flaggers'> <td class='flaggers'>
<table> <table>
{{#each flaggedPost.flaggers}} <tbody>
<tr> {{#each flaggedPost.flaggers}}
<td> <tr>
{{#link-to 'adminUser' this.user}}{{avatar this.user imageSize="small"}} {{/link-to}} <td>
</td> {{#link-to 'adminUser' this.user}}{{avatar this.user imageSize="small"}} {{/link-to}}
<td> </td>
{{unboundDate this.flaggedAt}} <td>
</td> {{unboundDate this.flaggedAt}}
<td> </td>
{{this.flagType}} <td>
</td> {{this.flagType}}
</tr> </td>
{{/each}} </tr>
{{/each}}
</tbody>
</table> </table>
</td> </td>