Commit fe9089d6 by Nilu

HT002 - Filter/Showing order should be ‘All Jobs’, ‘Open’, ‘Filled’, ‘Draft’

parent f301a034
......@@ -61,8 +61,12 @@
.toMap() %>"/>
</li>
<%
for (JobStatus status : JobStatus.getJobStatusArray())
for (JobStatus status : Utils.getJobStatusesForClient())
{
if(status == JobStatus.COMPLETE)
{
continue;
}
%>
<li class="<%= (jobStatus != null && jobStatus == status ? "active" : "" )%>">
<oneit:button value="<%= status.getDescription() %>" name="navigateBetweenStatus" skin="link"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment