scrutiny/scrutiny/projects/templates/projects/issues.html

27 lines
699 B
HTML

{% extends "scrutiny/base.html" %}
{% block appbar %}
<h2>{{ module.name }} - Issues touched between {{ commit1 }} and {{ commit2 }}</h2>
{% endblock %}
{% block content %}
<div>
<p><a href="{{ module.repository_url }}">{{ module.repository_url }}</a></p>
<ul class="issue-list">
{% for issue in issues %}
<li class="{{issue.priority_class}}"><a href="{{ issue.url }}">#{{ issue.id }}: {{ issue.subject }}</a>
<ul>
{% for commit in issue.commits %}
<li><tt>{{ commit.commit_html|safe }}</tt></li>
{% endfor %}
</ul></li>
{% endfor %}
</ul>
</div>
{% endblock %}
{% block page-end %}
{% endblock %}