{{ _("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() %}
{{ _('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, addon, file_history[file.id]) }}
{% 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 %}