documentation/extensions/odoo_theme/layout_templates/version_switcher.html
Antoine Vandevenne (anv) ebc3e70d0f [APOCALYPSE] Merge all documentations and add a new homemade theme
Co-authored-by: Victor Feyens (vfe) <vfe@odoo.com>
Co-authored-by: Elisabeth Dickinson (edi) <edi@odoo.com>
Co-authored-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-01-28 19:05:48 +01:00

14 lines
390 B
HTML

<div class="o_versions row me-2">
<div class="col-4 col-form-label">
<label class="fw_bold small mr-2">Version</label>
</div>
<div class="col-8">
<select class="form-select">
<option>{{ version }}</option> {# Current version #}
{% for name, url in versions %}
<option><a href="{{ url }}">{{ name }}</a></option>
{% endfor %}
</select>
</div>
</div>