<?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 text-warning"></i>
                    </div>
                </div>
            </td>
        </t>
    </t>
</t>

</templates>
