Commit 6440f0dd by Nilu

Page Title (<title>) - Change to 'Talentology - [Company/Client name] - [Job name] [Ref#, if any]

parent 7ffe8f1d
...@@ -400,7 +400,16 @@ public class Job extends BaseJob ...@@ -400,7 +400,16 @@ public class Job extends BaseJob
StringBuilder title = new StringBuilder(); StringBuilder title = new StringBuilder();
title.append("Talentology - "); title.append("Talentology - ");
// TODO: add company / client name
if(isClientAvailable())
{
title.append(getClient()).append(" - ");
}
else if(getCompanyUser() != null && getCompanyUser().getCompany() != null)
{
title.append(getCompanyUser().getCompany()).append(" - ");
}
title.append(getJobTitle()).append(" "); title.append(getJobTitle()).append(" ");
if(getReferenceNumber() != null) if(getReferenceNumber() != null)
......
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