You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Display all the added google fonts-->
|
|
<t t-name="theme_editor_sidebar_advanced_fonts">
|
|
<div>
|
|
<h6 class="info-infinito" data-bs-toggle="popover"
|
|
data-placement="right"
|
|
data-content="All internal users can edit their Advanced
|
|
features for themself"
|
|
title="" data-original-title="Help">Fonts
|
|
</h6>
|
|
<div class="sub_style" id="js_fonts">
|
|
<select id="infinito_font_select"
|
|
class="form-select infinito-form-select ">
|
|
<option href="#"
|
|
class="form-select infinito-form-select system-font"
|
|
t-att-data-variable="variable">System Font
|
|
</option>
|
|
<t t-foreach="data" t-as="font">
|
|
<option href="#"
|
|
class="form-select infinito-form-select"
|
|
t-att-data-id="font.id">
|
|
<t t-esc="font.name"/>
|
|
</option>
|
|
</t>
|
|
<option href="#"
|
|
class="form-select infinito-form-select add-font"
|
|
t-att-data-variable="variable">Add a Google Font
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</odoo>
|
|
|