{% extends "impala/base_shared.html" %} {% block js %} {% endblock %} {% if page == 'installed' %} {# L10n: {0} is an add-on name. #} {% set title = _('Thank you for installing {0}')|fe(addon.name) %} {% else %} {# L10n: {0} is an add-on name. #} {% set title = _('Meet the {0} Developer')|fe(addon.name) %} {% endif %} {% block title %}{{ page_title(title) }}{% endblock %} {% set authors = addon.listed_authors %} {% block bodyclass %} meet gutter {% if page == 'installed' %}about bare{% endif %} {% endblock %} {% if page == 'roadblock' %} {% set contribution_src = page %} {% endif %} {# contribute/installed is a 'headerless' page, so remove those elements. #} {% block site_header %} {% if page != 'installed' %}{{ super() }}{% endif %} {% endblock %} {% block navbar %} {% if page != 'installed' %}{{ super() }}{% endif %} {% endblock %} {% block footer %} {% if page != 'installed' %}{{ super() }}{% endif %} {% endblock %} {% if page == 'roadblock' and not addon.charity %} {% set msg = _('Before downloading this add-on, please consider supporting the ' 'development of this add-on by making a small contribution.') %} {% else %} {% set msg = _('The developer of this add-on asks that you help support its ' 'continued development by making a small contribution.') %} {% endif %} {% block content %} {% if not addon.takes_contributions %} {% endif %}
{% if page == 'installed' %}

{{ title }}

{% else %} {{ impala_breadcrumbs([(addon.type_url(), amo.ADDON_TYPES[addon.type]), (addon.get_url_path(), addon.name), (None, title)]) }}

{{ title }}

{% endif %}
{% if addon.takes_contributions %}
{{ impala_contribution(addon=addon, src=src, text=msg, show_install=(page != 'installed'), contribution_src=contribution_src) }}
{% endif %} {% if addon.the_reason or addon.the_future %}
{% if addon.the_reason %}

{{ _('Why was {0} created?')|fe(addon.name) }}

{{ addon.the_reason|nl2br }}

{% endif %} {% if addon.the_future %}

{{ _("What's next for {0}")|fe(addon.name) }}

{{ addon.the_future|nl2br }}

{% endif %}

{{ ngettext('About the Developer', 'About the Developers', authors|length) }}

{% endif %} {% for author in authors %}
{{ author|user_vcard }}
{% if author.bio %}

{{ _('Who is {0}?')|f(author.name) }}

{{ author.bio|nl2br }}

{% endif %}
{% endfor %} {% endblock %}