{% extends "base.html" %} {% load syntax %} {% load person %} {% load patch %} {% load truncate %} {% block title %}{{patch.name}}{% endblock %} {% block heading %}{{patch.name|truncate:70}}{%endblock%} {% block body %} {% if not patch.gerrit_change %} {% else %} {% endif %} {% if patch.date_last_state_change %} {% endif %} {% if patch.commit_ref %} {% else %} {% endif %} {% endif %} {% if patch.delegate %} {% endif %}
Submitter {{ patch.submitter|personify }}
Subject {{ patch.name }}
Date {{ patch.date }}
List thread {{patch.msgid}}Gerrit change {{patch.gerrit_change.gerrit_id }}
Project {{project.name}}
State {{ patch.state.name }}{% if patch.archived %}, archived{% endif %}
Last updated {{ patch.date_last_state_change }}
Commit {% if patch.project.commit_url %} {{ patch.commit_ref }}{{ patch.commit_ref }}
Delegated to: {{ patch.delegate.get_profile.name }}
Headers show
{% if patchform and not patch.gerrit_change %}

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.gerrit_change %}

Gerrit change

This represents an AOSP change submitted via Gerrit; it is mirrored here so that it is included in our statistics. You can see the actual patch and discussions around it on Gerrit's change #{{ patch.gerrit_change.gerrit_id }}.

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

Pull-request

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

Comments

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

Patch

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