Skip to content

Commit 4542b26

Browse files
committed
Don't show requested by for a review request if nobody requested it
- Legacy-Id: 11527
1 parent 19fff81 commit 4542b26

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

ietf/templates/doc/review/review_request.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,13 @@ <h1>Review request<br><small>{{ review_req.doc.name }}</small></h1>
5252
<td>{{ review_req.time|date:"Y-m-d" }}</td>
5353
</tr>
5454

55-
<tr>
56-
<th></th>
57-
<th>Requested by</th>
58-
<td>{{ review_req.requested_by }}</td>
59-
</tr>
55+
{% if review_req.requested_by.name != "(System)" %}
56+
<tr>
57+
<th></th>
58+
<th>Requested by</th>
59+
<td>{{ review_req.requested_by }}</td>
60+
</tr>
61+
{% endif %}
6062
</tbody>
6163

6264
<tbody class="meta">

0 commit comments

Comments
 (0)