Separates button grouping from td element

This commit is contained in:
Mouse Reeve 2021-04-04 10:38:40 -07:00
parent 03ba01a790
commit b6aa36960c
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@
{% trans "Requested" %} {% trans "Requested" %}
{% endif %} {% endif %}
</td> </td>
<td class="field is-grouped"> <td><div class="field is-grouped">
{# no invite OR invite not yet used #} {# no invite OR invite not yet used #}
{% if not req.invite.times_used %} {% if not req.invite.times_used %}
<form name="send-invite" method="post"> <form name="send-invite" method="post">
@ -98,7 +98,7 @@
{% endif %} {% endif %}
</form> </form>
{% endif %} {% endif %}
</td> </div></td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>