File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments