Added missing delete block
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / templates / conversationLabelAssignment.tpl
CommitLineData
7cd36813
MW
1<section class="section">
2 <h2 class="sectionTitle">{lang}wcf.conversation.label.assignLabels{/lang}</h2>
3990815c
AE
3
4 <ul>
5 {foreach from=$labelList item=label}
21ea4db4
MS
6 <li>
7 <label>
9d33eeda 8 <input type="checkbox"{if $label->labelID|in_array:$assignedLabels} checked{/if} data-label-id="{@$label->labelID}">
21ea4db4
MS
9 <span class="badge label{if $label->cssClassName} {@$label->cssClassName}{/if}">{$label->label}</span>
10 </label>
11 </li>
3990815c
AE
12 {/foreach}
13 </ul>
7cd36813 14</section>
3990815c
AE
15
16<div class="formSubmit">
c5a77f1d 17 <button class="buttonPrimary" id="assignLabels">{lang}wcf.global.button.save{/lang}</button>
21ea4db4 18</div>