{{ _("Files") }} |
{{ file_form.management_form }}
{{ file_form.non_form_errors() }}
{% for form in file_form.forms %}
{% include "devhub/includes/version_file.html" %}
{% endfor %}
{% if version.is_allowed_upload() %}
{% if waffle.switch('step-version-upload') %}
{% set version_upload_url = url('devhub.submit.file', addon.slug, version.id) %}
{% else %}
{% set version_upload_url = '#' %}
{% endif %}
{{ _('Upload Another File') }}
{% endif %}
|
{% if compat_form %}
{{ tip(_("Compatibility"),
_("Adjusting application information here will allow users to install your "
"add-on even if the install manifest in the package indicates that the "
"add-on is incompatible.")) }} |
{{ compat_form.non_form_errors() }}
{{ compat_form.management_form }}
{% for form in compat_form.initial_forms %}
{{ compat(form) }}
{% endfor %}
{% for form in compat_form.extra_forms %}
{{ compat(form, is_extra_form=True) }}
{% endfor %}
{% if check_addon_ownership(request, addon, dev=True) %}
{% endif %}
|
{% endif %}
{% with field = version_form.releasenotes %}
|
{{ field.errors }}
{{ field }}
{{ some_html_tip() }}
|
{% endwith %}
{{ _("License") }}
|
{{ version.license.name }}
{% if version.license.url %}
{% endif %}
|
{{ _('Approval Status') }} |
{% for file in version.all_files %}
-
{{ file_status_message(file) }}
{% endfor %}
|
{% with field = version_form.approvalnotes %}
{{ tip(None, _("Optionally, enter any information that may be useful "
"to the Editor reviewing this add-on, such as test "
"account information.")) }}
|
{{ field.errors }}
{{ field }}
|
{% endwith %}
{% with field = version_form.source %}
{{ tip(None, _("If your add-on contain binary or obfuscated code, make the source available here for reviewers.")) }}
|
{{ field.errors }}
{{ field }}
|
{% endwith %}