Skip to content

Commit

Permalink
Update the UI for problems list in administration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haozhe Xie committed Apr 7, 2016
1 parent 17b794d commit af7affd
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</select>
</div> <!-- .span8 -->
<div class="span4">
<button class="btn btn-danger btn-block"><spring:message code="voj.administration.all-problems.apply" text="Apply" /></button>
<button class="btn btn-danger"><spring:message code="voj.administration.all-problems.apply" text="Apply" /></button>
</div> <!-- .span4 -->
</div> <!-- .row-fluid -->
</div> <!-- .span4 -->
Expand All @@ -68,17 +68,17 @@
<input id="keyword" name="keyword" class="span12" type="text" placeholder="<spring:message code="voj.administration.all-problems.keyword" text="Keyword" />" value="${keyword}" />
</div> <!-- .control-group -->
</div> <!-- .span5 -->
<div class="span4">
<div class="span5">
<select name="problemCategory" id="problem-category">
<option value=""><spring:message code="voj.administration.all-problems.all-problem-categories" text="All Problem Categories" /></option>
<c:forEach var="problemCategory" items="${problemCategories}">
<option value="${problemCategory.problemCategorySlug}" <c:if test="${problemCategory.problemCategorySlug == selectedProblemCategory}">selected</c:if> >${problemCategory.problemCategoryName}</option>
</c:forEach>
</select>
</div> <!-- .span4 -->
<div class="span3">
<button class="btn btn-primary btn-block"><spring:message code="voj.administration.all-problems.filter" text="Filter" /></button>
</div> <!-- .span3 -->
</div> <!-- .span5 -->
<div class="span2">
<button class="btn btn-primary"><spring:message code="voj.administration.all-problems.filter" text="Filter" /></button>
</div> <!-- .span2 -->
</form> <!-- .row-fluid -->
</div> <!-- .span8 -->
</div> <!-- .row-fluid -->
Expand Down

0 comments on commit af7affd

Please sign in to comment.