Parent: [5448d2] (diff)

Child: [ddf08c] (diff)

Download this file

merge_requests.html    40 lines (36 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends 'allura:templates/repo/repo_master.html' %}
{% block title %}
{% if c.app.repo %}
Repository: {{c.app.repo.name}}
{% else %}
Repository
{% endif %}
{% endblock %}
{% block header %}{{c.app.config.options.mount_label}} Merge Requests{% endblock %}
{% block content %}
<div class="nested-grid-container">
{{ c.mr_filter.display(action='.', value=dict(status=status)) }}
</div>
<table>
<thead>
<tr>
<th>#</th>
<th>Status</th>
<th>Summary</th>
<th>Repository</th>
<th>Creator</th>
</tr>
</thead>
<tbody>
{% for req in requests %}
<tr>
<td><a href="{{req.request_number}}/">{{req.request_number}}</a></td>
<td><a href="{{req.request_number}}/">{{req.status}}</a></td>
<td><a href="{{req.request_number}}/">{{req.summary}}</a></td>
<td><a href="{{req.downstream_url}}">{{req.downstream_url}}</a></td>
<td><a href="{{req.creator_url}}">{{req.creator_name}}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}