{% from "devhub/includes/macros.html" import some_html_tip, select_cats %} {% extends "devhub/addons/submit/base.html" %} {% block title %}{{ dev_page_title(_('Describe Add-on'), addon) }}{% endblock %} {% block primary %}

{{ _('Describe Add-on') }}

{{ csrf() }}
{{ form.name }} {{ form.name.errors }}
{{ settings.SITE_URL }}{{ form.slug }}
{{ _('Please use only letters, numbers, underscores, and dashes in your URL.') }}
{{ settings.SITE_URL }}/…/ {{ _('Edit') }} {{ form.slug.errors }}
{{ form.summary }} {{ form.summary.errors }}
{{ _('This summary will be shown in listings and searches.') }}
{{ cat_form.non_form_errors() }} {{ cat_form.management_form }} {% for form in cat_form.initial_forms %} {{ select_cats(amo.MAX_CATEGORIES, form) }} {% endfor %}
{{ form.support_email }} {{ form.support_email.errors }}
{{ form.support_url }} {{ form.support_url.errors }}
{% if license_form %} {{ _('License:') }}
{% trans %} Please choose a license appropriate for the rights you grant on your source code. {% endtrans %} {{ license_form.builtin.errors }} {{ license_form.builtin }} {% set show_other = (license_form.initial.builtin == license_other_val or (license_form.errors and not license_form.builtin.errors)) %}
{{ license_form.non_field_errors() }} {{ license_form.name.errors }} {{ license_form.name.label_tag() }} {{ license_form.name }} {{ license_form.text.errors }} {{ license_form.text.label_tag() }} {{ license_form.text }} {{ some_html_tip() }}
{% endif %} {% set values = policy_form.data if policy_form.is_bound else policy_form.initial %}
{{ policy_form.has_priv }} {{ policy_form.has_priv.label_tag() }} ?
{{ policy_form.privacy_policy.errors }} {{ policy_form.privacy_policy.label_tag() }} {{ policy_form.privacy_policy }}

{{ _('Is there anything our reviewers should bear in mind when reviewing this add-on?') }}

{{ reviewer_form.approvalnotes }}

{{ _('These notes will only be visible to you and our reviewers.') }}

{% endblock primary %}