{% extends "devhub/base_impala.html" %}
{% if webapp %}
{% set title = loc('Manage My Apps') %}
{% else %}
{% set title = _('Manage My Add-ons') %}
{% endif %}
{% block title %}{{ dev_page_title(title) }}{% endblock %}
{% block content %}
{{ title }}
{% if addons %}
{% set cnt = addons.paginator.count %}
{% if webapp %}
{# L10n: {0} is an integer. #}
{{ ngettext('{0} app', '{0} apps', cnt)|f(cnt|numberfmt)|safe }}
{% else %}
{# L10n: {0} is an integer. #}
{{ ngettext('{0} add-on', '{0} add-ons', cnt)|f(cnt|numberfmt)|safe }}
{% endif %}
{% endif %}
{{ loc("You don't currently have any apps hosted on Mozilla Marketplace. To learn how the process works and submit your first app, click Get Started below.") }}
{% else %}{% trans %} You don't currently have any add-ons hosted on Mozilla Add-ons. To learn how the process works and submit your first add-on, click Get Started below. {% endtrans %}
{% endif %} {% set submit_view = 'devhub.submit_apps.1' if webapp else 'devhub.submit.1' %}