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

{{ patch.name }}

Submitted by {{ patch.submitter|personify:project }} on {{ patch.date }}

Details

{% if patch.commit_ref %} {% endif %} {% if patch.delegate %} {% endif %}
Message ID {{ patch.msgid|msgid }}
State {{ patch.state.name }}{% if patch.archived %}, archived{% endif %}
Commit {{ patch.commit_ref }}
Delegated to: {{ patch.delegate.profile.name }}
Headers 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 patch.pull_url %}

Pull-request

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

Checks

{% for check in patch.checks %} {% endfor %}
Context Check Description
{{ check.context }} {{ check.get_state_display }} {% if check.target_url %} {% endif %} {{ check.description }} {% if check.target_url %} {% endif %}
{% endif %} {% for item in patch.commit_message %}

Commit Message

{{ patch.submitter|personify:project }} {{ patch.date }}
{{ item|commentsyntax }}
{% endfor %} {% for item in patch.answers %} {% if forloop.first %}

Comments

{% endif %}
{{ item.submitter|personify:project }} {{ item.date }}
{{ item|commentsyntax }}
{% endfor %} {% if patch.content %}

Patch hide {% if patch.content %} | download patch {% endif %} | download mbox

{{ patch|patchsyntax }}
{% endif %} {% endblock %}