Updated markup for new checkboxes

This commit is contained in:
Simon Busborg
2015-08-27 11:24:56 +02:00
parent 15ae403605
commit e89a3c70e9
2 changed files with 35 additions and 20 deletions
@@ -104,15 +104,20 @@
<div id="search-options" class="search-options">
<label>Filter by</label>
<div class="options">
<span>
<label class="checkbox">
<input type="checkbox" name="unsolved" />
<span></span>
<small>show only unsolved topics</small>
</span>
<br />
<span>
</label>
<label class="checkbox">
<input type="checkbox" name="noreplies" />
<span></span>
<small>show only topics with no replies</small>
</span>
</label>
</div>
</div>
</div>
+25 -15
View File
@@ -43,21 +43,31 @@
<% if(Request.QueryString["cat"] == "forum")
{ %>
<div id="search-options" class="search-options">
<label>Sort by</label>
<div class="options">
<span>
<input type="checkbox" name="solved"/>
<small>show only solved topics</small
></span><br/>
<span>
<input type="checkbox" name="replies"/><small>show only topics with replies</small>
</span><br/>
<span>
<input type="checkbox" name="order" value="updateDate"/><small>show last updated first</small>
</span>
</div>
</div>
<div id="search-options" class="search-options">
<label>Sort by</label>
<div class="options">
<label class="checkbox">
<input type="checkbox" name="solved"/>
<span></span>
<small>show only solved topics</small>
</label>
<label class="checkbox">
<input type="checkbox" name="replies"/>
<span></span>
<small>show only topics with replies</small>
</label>
<label class="checkbox">
<input type="checkbox" name="order" value="updateDate"/>
<span></span>
<small>show last updated first</small>
</label>
</div>
</div>
<% } %>
<%-- <% if (Request.QueryString["cat"] == "project")