{% extends "admin/change_form.html" %} {% load compressed %} {% load i18n %} {% block scripts %} {{block.super}} {% compressed_js "repositoryform" %} {% endblock %} {% block object-tools-items %} {% if adminform.form.public_key %}
  • {% trans "Show SSH Public Key" %}
  • {% endif %} {{block.super}} {% endblock %} {% block form_top %} {% with adminform.form as form %} {% include "admin/repository_confirmations.html" %} {% endwith %} {% if adminform.form.errors and adminform.form.hosting_account_linked %}

    {% trans "Account successfully linked." %}

    {% blocktrans %} Your hosting account was successfully linked. You will not need to link it again when fixing the remaining errors. {% endblocktrans %}

    {% endif %} {% if adminform.form.public_key %}

    {% trans "Note:" %} {% blocktrans %} If your provider or repository requires an SSH key for access, you can click "Show SSH Public Key" to the right. {% endblocktrans %}

    {% endif %} {% endblock %} {% block field_sets %} {% for fieldset in adminform %}
    {% if fieldset.name %}

    {{fieldset.name}}

    {% endif %} {% if fieldset.description %}
    {{fieldset.description|safe}}
    {% endif %} {% for line in fieldset %} {% for adminfield in line %} {% with adminfield.field as field %} {% include "siteconfig/settings_field.html" %} {% endwith %} {% endfor %} {% endfor %} {% if fieldset.name == adminform.form.REPOSITORY_INFO_FIELDSET %} {% for hosting_service, repo_types in adminform.form.repository_forms.items %} {% for repo_type_id, repo_form in repo_types.items %} {% endfor %} {% endfor %} {% else %} {% if fieldset.name == adminform.form.BUG_TRACKER_FIELDSET %} {% for hosting_service, bug_tracker_types in adminform.form.bug_tracker_forms.items %} {% for bug_tracker_type_id, bug_tracker_form in bug_tracker_types.items %} {% endfor %} {% endfor %} {% endif %} {% endif %}
    {% endfor %} {% endblock %}