Commit 4a89a166 by Nilu

S18688461 # Client - Incoming Issues (raised by Client) #Hide Client column if not using clients

parent 3198e21c
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
%> %>
<div class="template-list" id="<%= template.getID() %>"> <div class="template-list" id="<%= template.getID() %>">
<div class="template-row"> <div class="template-row">
<div class="job-template-left job-template-cl1"> <div class="job-template-left job-template-cl1 <%= hiringTeam.showHasClientSupport() ? "" : "no-client"%>">
<div class="template-name heading"> <div class="template-name heading">
<oneit:toString value="<%= template.getTemplateName() %>" mode="EscapeHTML" /> <oneit:toString value="<%= template.getTemplateName() %>" mode="EscapeHTML" />
</div> </div>
...@@ -98,12 +98,19 @@ ...@@ -98,12 +98,19 @@
<oneit:toString value="<%= template.getJobTitle() %>" mode="EscapeHTML" /> <oneit:toString value="<%= template.getJobTitle() %>" mode="EscapeHTML" />
</div> </div>
</div> </div>
<%
if(hiringTeam.showHasClientSupport())
{
%>
<div class="job-template-left job-template-cl3"> <div class="job-template-left job-template-cl3">
<span class="grey-span">CLIENT</span> <span class="grey-span">CLIENT</span>
<div class="template-name"> <div class="template-name">
<oneit:toString value="<%= template.getClient() %>" mode="EscapeHTML" /> <oneit:toString value="<%= template.getClient() %>" mode="EscapeHTML" />
</div> </div>
</div> </div>
<%
}
%>
<div class="job-template-left job-template-cl4"> <div class="job-template-left job-template-cl4">
<span class="grey-span">LAST UPDATED</span> <span class="grey-span">LAST UPDATED</span>
<div class="template-name"> <div class="template-name">
......
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