Commit c78e137f by Nilu

client list HT010 modifications

parent 4ed5f0e3
...@@ -4929,6 +4929,10 @@ label, label .label-title span { ...@@ -4929,6 +4929,10 @@ label, label .label-title span {
text-align: left; text-align: left;
font-size: 20px; font-size: 20px;
} }
.opaque-jobcount{
opacity: 0.5;
}
/* End of Clients HT010 */ /* End of Clients HT010 */
.hire-the-right-candi { .hire-the-right-candi {
......
...@@ -72,22 +72,20 @@ ...@@ -72,22 +72,20 @@
</a> </a>
</div> </div>
</div> </div>
<div class="application-count jl-c"> <%
<oneit:toString value="<%= client.getApplicationCountByStatus(JobStatus.OPEN) %>" mode="EscapeHTML" nullValue="0"/> for (JobStatus jobStatus : JobStatus.getJobStatusArray())
<span class="grey-span">Open</span> {
</div> int jobCount = client.getApplicationCountByStatus(jobStatus);
<div class="application-count jl-c"> %>
<oneit:toString value="<%= client.getApplicationCountByStatus(JobStatus.COMPLETE) %>" mode="EscapeHTML" nullValue="0"/> <div class="<%= "application-count jl-c " + (jobCount == 0 ? "opaque-jobcount" : "")%>">
<span class="grey-span">Closed</span> <oneit:toString value="<%= jobCount %>" mode="EscapeHTML" nullValue="0"/>
</div> <span class="grey-span">
<div class="application-count jl-c"> <oneit:toString value="<%= jobStatus.getDescription() %>" mode="EscapeHTML"/>
<oneit:toString value="<%= client.getApplicationCountByStatus(JobStatus.DRAFT) %>" mode="EscapeHTML" nullValue="0"/> </span>
<span class="grey-span">Filled</span> </div>
</div> <%
<div class="application-count jl-c"> }
<oneit:toString value="<%= client.getApplicationCountByStatus(JobStatus.FILLED) %>" mode="EscapeHTML" nullValue="0"/> %>
<span class="grey-span">Draft</span>
</div>
</div> </div>
</div> </div>
<% <%
......
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