{% extends "base.html" %} {% load syntax %} {% load person %} {% load patch %} {% block title %}{{patch.name}}{% endblock %} {% block heading %}{{patch.name}}{%endblock%} {% block body %} {% if patch.commit_ref %} {% endif %} {% if patch.delegate %} {% endif %}
Submitter {{ patch.submitter|personify }}
Date {{ patch.date }}
Message ID {{ patch.msgid }}
Download mbox {% if patch.content %}| patch {% endif %}
Permalink {{ patch.get_absolute_url }}
State {{ patch.state.name }}{% if patch.archived %}, archived{% endif %}
Commit {{ patch.commit_ref }}
Delegated to: {{ patch.delegate.get_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 %}

Comments

{% for comment in patch.comments %}
{{ comment.submitter|personify }} - {{comment.date}}
{{ comment|commentsyntax }}
{% endfor %} {% if patch.content %}

Patch

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