Better HTML code for notifications checkboxes (#2271)

This commit is contained in:
Clément OUDOT 2020-08-24 23:31:35 +02:00
parent a1c202141e
commit b5a61310cd

View File

@ -10,6 +10,11 @@
<p class="notifText"><TMPL_VAR NAME="text"></p>
</TMPL_IF>
<TMPL_LOOP NAME="check">
<p class="notifCheck"><label for="check<TMPL_VAR NAME="id">"><input type="checkbox" name="check<TMPL_VAR NAME="id">" id="<TMPL_VAR NAME="id">" value="accepted"><TMPL_VAR NAME="value"></label></p>
<p class="notifCheck">
<div class="form-group form-check">
<input type="checkbox" name="check<TMPL_VAR NAME="id">" id="<TMPL_VAR NAME="id">" value="accepted">
<label class="form-check-label" for="<TMPL_VAR NAME="id">"><TMPL_VAR NAME="value"></label>
</div>
</p>
</TMPL_LOOP>
</TMPL_LOOP>