diff --git a/ietf/doc/views_bofreq.py b/ietf/doc/views_bofreq.py index 9ae92f4cd..c496ec9cc 100644 --- a/ietf/doc/views_bofreq.py +++ b/ietf/doc/views_bofreq.py @@ -29,6 +29,7 @@ def bof_requests(request): reqs = Document.objects.filter(type_id='bofreq') for req in reqs: req.latest_revision_event = req.latest_event(NewRevisionDocEvent) + req.responsible = bofreq_responsible(req) return render(request, 'doc/bofreq/bof_requests.html',dict(reqs=reqs)) diff --git a/ietf/templates/doc/bofreq/bof_requests.html b/ietf/templates/doc/bofreq/bof_requests.html index 4127de8f0..8708066fd 100644 --- a/ietf/templates/doc/bofreq/bof_requests.html +++ b/ietf/templates/doc/bofreq/bof_requests.html @@ -19,7 +19,7 @@
- + {% for req in req_group.list %} @@ -27,6 +27,7 @@ + {% endfor %}
NameDateTitle
NameDateTitleResponsible
{{req.name}}-{{req.rev}} {{req.latest_revision_event.time|date:"Y-m-d"}} {{req.title}}{{req.responsible|join:', '}}