2010-12-02 02:27:17 +03:00
|
|
|
{% extends "global/footer.html" %}
|
|
|
|
|
|
|
|
{% block menu_links %}
|
2010-12-14 22:10:06 +03:00
|
|
|
{% if request.APP == amo.FIREFOX or request.APP == amo.MOBILE %}
|
|
|
|
{% include "menu_links.html" %}
|
|
|
|
{% endif %}
|
2010-12-02 02:27:17 +03:00
|
|
|
{% 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>
|
2010-12-14 02:13:17 +03:00
|
|
|
{% endblock %}
|
2011-11-15 03:10:32 +04:00
|
|
|
|
|
|
|
{% block copyright %}
|
|
|
|
{% include 'copyright.html' %}
|
|
|
|
{% endblock %}
|