FSN#41886 e Het 0-bolletje ook tonen

svn path=/Website/trunk/; revision=35205
This commit is contained in:
Peter Feij
2017-09-05 16:14:17 +00:00
parent 7a7a014b4a
commit cfb5bdc580
4 changed files with 12 additions and 32 deletions

View File

@@ -218,15 +218,9 @@ var authparams = user.checkAutorisation(autfunction);
<td id="bezFlags">
<% for (flagkey=0; flagkey < S("bez_bezoekers_flags"); flagkey++)
{
if (flagkey == 0)
{
%><label for="flag0"><input type="checkbox" name="flag0" id="flag0" checked>&nbsp;<%=safe.html(L("lcl_bez_flag0"))%></label><br>
<% }
else
{
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa fa-circle bezflag<%=flagkey%> bezs"></i>&nbsp;<%=safe.html(L("lcl_bez_flag"+flagkey))%></label><br>
<% }
} %>
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa <%=flagkey==0?"fa-circle-o":"fa-circle"%> bezflag<%=flagkey%> bezs"></i>&nbsp;<%=safe.html(L("lcl_bez_flag"+flagkey))%></label><br><%
}
%>
</td>
</tr>
<% } %>

View File

@@ -827,17 +827,11 @@ if (!frontend && srtdisc > -1)
<tr>
<td class="label"><label><%=L("lcl_mld_flags")%>:&nbsp;</label></td>
<td id="mldFlags">
<% for (flagkey=0; flagkey < S('mld_melding_flags'); flagkey++)
<% for (flagkey=0; flagkey < S("mld_melding_flags"); flagkey++)
{
if (flagkey == 0)
{
%><label for="flag0"><input type="checkbox" name="flag0" id="flag0" checked>&nbsp;<%=safe.html(L("lcl_mld_flag0"))%></label><br>
<% }
else
{
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa fa-circle mldflag<%=flagkey%> mlds"></i>&nbsp;<%=safe.html(L("lcl_mld_flag"+flagkey))%></label><br>
<% }
} %>
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa <%=flagkey==0?"fa-circle-o":"fa-circle"%> mldflag<%=flagkey%> mlds"></i>&nbsp;<%=safe.html(L("lcl_mld_flag"+flagkey))%></label><br><%
}
%>
</td>
</tr>
<% } %>

View File

@@ -367,9 +367,7 @@ oRs.close();
<% for (flagkey=0; flagkey < S("mld_opdracht_flags"); flagkey++)
{ %>
<label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked>
<% if (flagkey > 0) %>
<%=I("fa-circle opdrflag"+flagkey+" opdrs")%>
&nbsp;<%=safe.html(L("lcl_opdr_flag"+flagkey))%></label><br>
<i class="fa <%=flagkey==0?"fa-circle-o":"fa-circle"%> opdrflag<%=flagkey%> opdrs"></i>&nbsp;<%=safe.html(L("lcl_opdr_flag"+flagkey))%></label><br>
<% } %>
</td>
</tr>

View File

@@ -394,17 +394,11 @@ var authparams = user.checkAutorisation(autfunction);
<tr>
<td class="label"><label><%=L("lcl_res_flags")%>:&nbsp;</label></td>
<td id="resFlags">
<% for (flagkey=0; flagkey < S('res_reservering_flags'); flagkey++)
<% for (flagkey=0; flagkey < S("res_reservering_flags"); flagkey++)
{
if (flagkey == 0)
{
%><label for="flag0"><input type="checkbox" name="flag0" id="flag0" checked>&nbsp;<%=safe.html(L("lcl_res_flag0"))%></label><br>
<% }
else
{
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa fa-circle resflag<%=flagkey%> ress"></i>&nbsp;<%=safe.html(L("lcl_res_flag"+flagkey))%></label><br>
<% }
} %>
%><label for="flag<%=flagkey%>"><input type="checkbox" name="flag<%=flagkey%>" id="flag<%=flagkey%>" checked><i class="fa <%=flagkey==0?"fa-circle-o":"fa-circle"%> resflag<%=flagkey%> ress"></i>&nbsp;<%=safe.html(L("lcl_res_flag"+flagkey))%></label><br><%
}
%>
</td>
</tr>
<%