{% extends "base.html" %} {% load humanize %} {% load syntax %} {% load person %} {% load patch %} {% block title %}{{submission.name}}{% endblock %} {% block body %}

{{ submission.name }} {% include "patchwork/download_buttons.html" %}

{% if submission.state %} {% endif %} {% if submission.commit_ref %} {% endif %} {% if submission.delegate %} {% endif %} {% if submission.latest_series %} {% endif %}
Message ID {{ submission.msgid|msgid }}
State {{ submission.state.name }}{% if submission.archived %}, archived{% endif %}
Commit {{ submission.commit_ref }}
Delegated to: {{ submission.delegate.profile.name }}
Headers show
Series
    {% for series in submission.series.all %}
  • {% if series == submission.latest_series %} {{ series }} {% else %} {{ series }} {% endif %}
  • {% endfor %}
Related show
{% if patchform %}

Patch Properties

{% csrf_token %}
Change state: {{ patchform.state }} {{ patchform.state.errors }}
Delegate to: {{ patchform.delegate }} {{ patchform.delegate.errors }}
Archived: {{ patchform.archived }} {{ patchform.archived.errors }}
{% endif %} {% if createbundleform %}

Bundling

{% if bundles %} {% endif %}
Create bundle: {% if createbundleform.non_field_errors %}
{{createbundleform.non_field_errors}}
{% endif %}
{% csrf_token %} {% if createbundleform.name.errors %}
{{createbundleform.name.errors}}
{% endif %} {{ createbundleform.name }}
Add to bundle:
{% csrf_token %}
{% endif %}
{% if submission.pull_url %}

Pull-request

{{ submission.pull_url }} {% endif %} {% if submission.checks %}

Checks

{% for check in submission.checks %} {% endfor %}
Context Check Description
{{ check.user }}/{{ check.context }} {{ check.get_state_display }} {% if check.target_url %} {% endif %} {{ check.description }} {% if check.target_url %} {% endif %}
{% endif %} {% if submission.diff %}

Commit Message

{% else %}

Message

{% endif %}
{{ submission.submitter|personify:project }} {{ submission.date }} UTC
{{ submission|commentsyntax }}
{% for item in submission.comments.all %} {% if forloop.first %}

Comments

{% endif %}
{{ item.submitter|personify:project }} {{ item.date }} UTC | #{{ forloop.counter }}
{{ item|commentsyntax }}
{% endfor %} {% if submission.diff %}

Patch {% include "patchwork/download_buttons.html" %}

{{ submission|patchsyntax }}
{% endif %} {% endblock %}