diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_skills/static/src/xml/skills_templates.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/hr_skills/static/src/xml/skills_templates.xml')
| -rw-r--r-- | addons/hr_skills/static/src/xml/skills_templates.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/addons/hr_skills/static/src/xml/skills_templates.xml b/addons/hr_skills/static/src/xml/skills_templates.xml new file mode 100644 index 00000000..e078ca3e --- /dev/null +++ b/addons/hr_skills/static/src/xml/skills_templates.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<templates id="template" xml:space="preserve"> + +<t t-name="hr_skill_data_row"> + <tr class="o_data_row" t-att-data-id="id"> + <td class="o_data_cell o_skill_cell w-100"> + <t t-esc="data.skill_id.data.display_name"/> + </td> + <td class="o_data_cell o_skill_cell pr-3"> + <t t-esc="data.skill_level_id.data.display_name"/> + </td> + </tr> +</t> + +<t t-name="hr_default_group_row"> + <tr class="o_group_header o_group_has_content"> + <td class="o_group_name border-0 pr-2" colspan="99"> + <b t-esc="display_name"/> + </td> + </tr> +</t> + + +</templates> |
