feat(topic edit): label for checkboxes

This commit is contained in:
mrilyew 2025-05-27 18:45:23 +03:00 committed by Alexander Minkin
parent 7e65f25d7b
commit 4693d2f92d

View file

@ -33,9 +33,9 @@
</td> </td>
<td> <td>
{if $topic->getClub()->canBeModifiedBy($thisUser)} {if $topic->getClub()->canBeModifiedBy($thisUser)}
<input type="checkbox" name="pin" n:attr="checked => $topic->isPinned()" /> {_pin_topic}<br /> <label><input type="checkbox" name="pin" n:attr="checked => $topic->isPinned()" /> {_pin_topic}</label><br />
{/if} {/if}
<input type="checkbox" name="close" n:attr="checked => $topic->isClosed()" /> {_close_topic} <label><input type="checkbox" name="close" n:attr="checked => $topic->isClosed()" /> {_close_topic}</label>
</td> </td>
</tr> </tr>
<tr> <tr>