addons-server/templates/amo_footer.html

26 строки
736 B
HTML

{% extends "global/footer.html" %}
{% block menu_links %}
{% if request.APP == amo.FIREFOX or request.APP == amo.MOBILE %}
{% include "menu_links.html" %}
{% endif %}
{% endblock %}
{% block lang_form %}
<form class="languages go" id="lang_form" method="get" action="">
<label for="language">{{ _('Other languages') }}</label>
<select id="language" name="lang" dir="ltr">
{% for code, name in LANGUAGES|dictsort -%}
<option value="{{ code }}" {{ code|ifeq(LANG|lower, "selected") }}>
{{ name }}
</option>
{%- endfor %}
</select>
<button type="submit">{{ _('Go') }}</button>
</form>
{% endblock %}
{% block copyright %}
{% include 'copyright.html' %}
{% endblock %}