Add document state and telechat info to the review request overview page

- Legacy-Id: 12382
This commit is contained in:
Ole Laursen 2016-11-17 17:46:50 +00:00
parent 1970cbab16
commit fb26a27bfa

View file

@ -32,6 +32,8 @@
{% if review_requests.0.reviewer %}
<th>Reviewer</th>
{% endif %}
<th>Document state</th>
<th>IESG Telechat</th>
</tr>
</thead>
<tbody>
@ -51,6 +53,14 @@
{% if r.reviewer_unavailable %}<span class="label label-danger">Unavailable</span>{% endif %}
</td>
{% endif %}
<td>
{{ r.doc.friendly_state }}
</td>
<td>
{% if r.doc.telechat_date %}
{{ r.doc.telechat_date }}
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>