documentation/_extensions/odoo_ext/switchers_list.html
Victor Feyens 65b85f289d [MOV] odoo -> odoo_ext extensions to avoid naming conflicts
since we now have to import odoo for autodoc in dev doc

TODO: if odoo directory is not found, disable the build of dev doc ???
2020-09-24 17:45:03 +02:00

26 lines
669 B
HTML

{% if languages %}
<li class="languages dropdown">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">
{{ language }}
</a>
<ul class="dropdown-menu" role="menu">
{% for name, url in languages %}
<li><a href="{{ url }}">{{ name }}</a></li>
{% endfor %}
</ul>
</li>
{% endif %}
{% if versions %}
<li class="versions dropdown">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">
{{ version }}
</a>
<ul class="dropdown-menu" role="menu">
{% for name, url in versions %}
<li><a href="{{ url }}">{{ name }}</a></li>
{% endfor %}
</ul>
</li>
{% endif %}