{% extends "devhub/base_impala.html" %} {% set title = _('Manage My Submissions') %} {% block title %}{{ dev_page_title(title) }}{% endblock %} {% block content %} {{ dev_breadcrumbs(impala=True) }} {{ title }} {% if addon_tab %} {% set cnt = addons.paginator.count %} {# L10n: {0} is an integer. #} {{ ngettext('{0} add-on', '{0} add-ons', cnt)|fe(cnt|numberfmt) }} {% endif %} {{ _('Submit a New Add-on') }} {{ _('Submit a New Theme') }} {{ _('Recent Activity') }} {{ _('Subscribe to this feed') }} {% if addon_items %} {% for item in addon_items %} {{ item }} {% trans user=item.user|user_link, ago=item.created|timesince %} {{ ago }} by {{ user }} {% endtrans %} {% endfor %} {% endif %} {{ _('Older activity for My Add-ons') }} ► {% include "devhub/includes/blog_posts.html" %} {% if addon_tab %} {% include "addons/includes/dashboard_tabs.html" %} {{ impala_addon_listing_header(request.get_full_path(), search_filter=filter) }} {{ dev_addon_listing_items(addons.object_list) }} {{ addons|impala_paginator }} {% endif %} {% if theme %} {# L10n: {0} is an integer. #} {% set cnt = themes.paginator.count %} {{ ngettext('{0} theme', '{0} themes', cnt)|fe(cnt|numberfmt) }} {% include "addons/includes/dashboard_tabs.html" %} {{ impala_addon_listing_header(request.get_full_path(), search_filter=filter) }} {{ dev_addon_listing_items(themes.object_list) }} {{ themes|impala_paginator }} {% endif %} {% endblock %}
{{ _('Submit a New Add-on') }}
{{ _('Submit a New Theme') }}
{{ _('Older activity for My Add-ons') }} ►