Skip to content

Commit 885fe35

Browse files
committed
show responsible on list of requests
- Legacy-Id: 19207
1 parent 916e524 commit 885fe35

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/doc/views_bofreq.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def bof_requests(request):
2929
reqs = Document.objects.filter(type_id='bofreq')
3030
for req in reqs:
3131
req.latest_revision_event = req.latest_event(NewRevisionDocEvent)
32+
req.responsible = bofreq_responsible(req)
3233
return render(request, 'doc/bofreq/bof_requests.html',dict(reqs=reqs))
3334

3435

ietf/templates/doc/bofreq/bof_requests.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ <h1>BOF Requests</h1>
1919
<div class="panel-body">
2020
<table id="bofreqs-{{req_group.grouper}}" class="table table-condensed table-striped tablesorter">
2121
<thead>
22-
<tr><th class="col-sm-4">Name</th><th class="col-sm-1">Date</th><th>Title</th></tr>
22+
<tr><th class="col-sm-4">Name</th><th class="col-sm-1">Date</th><th>Title</th><th>Responsible</th></tr>
2323
</thead>
2424
<tbody>
2525
{% for req in req_group.list %}
2626
<tr>
2727
<td><a href={% url 'ietf.doc.views_doc.document_main' name=req.name %}>{{req.name}}-{{req.rev}}</a></td>
2828
<td>{{req.latest_revision_event.time|date:"Y-m-d"}}</td>
2929
<td>{{req.title}}</td>
30+
<td>{{req.responsible|join:', '}}</td>
3031
</tr>
3132
{% endfor %}
3233
</tbody>

0 commit comments

Comments
 (0)