{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block nav-breadcrumbs %} {% endblock %} {% block content %}

{{ action|capfirst }} {{ release.package.name }} {{ release.version }}

{% if resume_available %}
{% endif %} {% if started %}
{% endif %}
{% if manual_git_push %}

{% blocktrans with step=manual_git_push.step %}Manual git push required to continue "{{ step }}".{% endblocktrans %}

{% trans 'Run' %} {{ manual_git_push_command }} {% trans 'then confirm or retry the push below.' %}

{% if manual_git_push_error %}

{{ manual_git_push_error }}

{% endif %}
{% endif %}
    {% for step in step_states %}
  1. {{ step.icon }} {{ step.name }}
  2. {% endfor %}
{% if github_credentials_missing and not done %}

🔑 {% trans "GitHub token required" %}

{% if github_token_required %}

{% trans "Publishing paused. Enter a GitHub token to continue. The token is used for this publish session and is not stored in the database." %}

{% else %}

{% trans "Enter a GitHub token before starting the publish. The token is used for this publish session and is not stored in the database." %}

{% endif %}
{% csrf_token %} {% if github_token_required %} {% else %} {% endif %}
{% endif %} {% if paused and started and not done and not error %} {% if not github_token_required %}

{% trans 'Publishing paused. Press Continue to resume.' %}

{% endif %} {% endif %} {% if fixtures %}

{% trans 'Fixture changes' %}

{% for fx in fixtures %} {% endfor %}
{% trans 'Fixture' %} {% trans 'Entries' %} {% trans 'Models' %}
{{ fx.path }} {{ fx.count }} {{ fx.models|join:', ' }}
{% endif %} {% if error %}

{{ error }}

{% trans 'Resolve the issue above, then continue to retry this step without restarting.' %}

{% include "core/partials/release_ack_error_form.html" %} {% elif not done %} {% if started and next_step is not None %} {% endif %} {% if started %} {% if paused %} {# Paused message shown above #} {% else %}

{% trans 'Running…' %}

{% endif %} {% else %}

{% trans 'Waiting to start' %}

{% endif %} {% else %}

{% trans 'All steps completed.' %}

{% if release.pypi_url %}

{{ release.pypi_url }}

{% endif %} {% if release.github_url %}

{{ release.github_url }}

{% endif %}
{% if cert_log %}

{% blocktrans %}Certification logged in {{ cert_log }}{% endblocktrans %}

{% endif %} {% endif %}

{% trans 'Restarts' %}: {{ restart_count }}

{% trans 'Logs' %}

{% if show_log %} {% if log_content %}
{{ log_content }}
{% else %}

{% trans 'Logs will appear here as steps progress.' %}

{% endif %} {% else %}

{% trans 'Logs will appear here after publishing starts.' %}

{% endif %}
{% endblock %}