[IMP] Used write_date instead of post_date

And make the description h3 visible when the description of the job exists.

bzr revid: psa@tinyerp.com-20130812104232-0n9a2b4owclecsvy
This commit is contained in:
Paramjit Singh Sahota 2013-08-12 16:12:32 +05:30
parent 9b3560e589
commit 7bbf7e5bd6
2 changed files with 5 additions and 10 deletions

View File

@ -1,7 +0,0 @@
from openerp.osv import osv, fields
class job_post(osv.osv):
_inherit = "hr.job"
_columns = {
'post_date': fields.date('Post Date'),
}

View File

@ -36,7 +36,7 @@
<td>
<a t-att-href="'/job/detail/%%s' %% job.id"><span class="lead" t-field="job.name"/></a><br/>
<span t-if="job.department_id" t-esc="job.department_id.name"/>
<span t-esc="job.post_date"/>
<span t-esc="job.write_date"/>
</td>
</tr>
</t>
@ -60,8 +60,10 @@
</div>
<div class="row">
<div class="span12">
<h3>Description</h3>
<p t-if="job.description"><t t-esc="job.description"/></p>
<t t-if="job.description">
<h3>Description</h3>
<p t-if="job.description"><t t-esc="job.description"/></p>
</t>
</div>
</div>
<t t-call="website_hr_recruitment.applyjobpost"/>