{% 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.pull_url %}
Pull-request
{{ patch.pull_url }}
{% endif %}
{% if patch.checks %}
Checks
{% endif %}
{% for item in patch.commit_message %}
Commit Message
{% endfor %}
{% for item in patch.answers %}
{% if forloop.first %}
Comments
{% endif %}
{% endfor %}
{% if patch.content %}
{% endif %}
{% endblock %}