Commit 20496837 by Harsh Shah

Finish Hotfix-20180612

parents c3400012 439a6443
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
</div> </div>
</div> </div>
<% <%
if(job.getJobStatus() == JobStatus.OPEN && jobApplication.getApplicationStatus()!= ApplicationStatus.SUBMITTED) if(job.getJobStatus() == JobStatus.OPEN && jobApplication.getApplicationStatus() == ApplicationStatus.DRAFT)
{ {
String btnText = "Resume the application"; String btnText = "Resume the application";
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
{ {
String infoStr = "We're sorry, this job is no longer accepting applications"; String infoStr = "We're sorry, this job is no longer accepting applications";
if(jobApplication.getApplicationStatus() == ApplicationStatus.SUBMITTED) if(jobApplication.getApplicationStatus() != ApplicationStatus.DRAFT)
{ {
infoStr = "You applied for this job on " + FormatUtils.stringify(jobApplication.getSubmittedDate(), "MidDate", "") ; infoStr = "You applied for this job on " + FormatUtils.stringify(jobApplication.getSubmittedDate(), "MidDate", "") ;
} }
......
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