blob: 8705bc6b69e39c7e1d3916237a578b596be91b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-extend="hr_resume_data_row">
<t t-jquery="tr.o_data_row" t-operation="append">
<t t-if="data.display_type === 'certification'">
<td class="o_data_cell container" colspan="2">
<div class="o_resume_line row" t-att-data-id="id">
<div class="o_resume_line_dates col-lg-3">
<span><t t-esc="data.date_start"/></span>
</div>
<div class="o_resume_line_desc col-lg-8">
<h3><t t-esc="data.name"/></h3>
<t t-if="data.description" t-esc="data.description"/>
</div>
<div class="o_resume_line_icon icon_trophy col-lg-1">
<i class="fa fa-trophy fa-2x"></i>
</div>
</div>
</td>
</t>
</t>
</t>
</templates>
|