Commit c78e137f by Nilu

client list HT010 modifications

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