Skip to content

Commit f58033e

Browse files
author
Justin Iurman
authored
fix: closed review request "by (System)" (ietf-tools#4255)
Only display the user in the "Requested" column if it's a real human (i.e., not "System"). Fix ietf-tools#3687
1 parent 98af0e8 commit f58033e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ietf/templates/group/review_requests.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,10 @@ <h2 class="mt-5" id="closed-review-requests">Closed review requests and assignme
166166
{{ r.type }}
167167
</td>
168168
<td>
169-
{{ r.time|date:"Y-m-d" }} by {% person_link r.requested_by %}
169+
{{ r.time|date:"Y-m-d" }}
170+
{% if r.requested_by.id != 1 %}
171+
by {% person_link r.requested_by %}
172+
{% endif %}
170173
</td>
171174
<td>
172175
{{ r.deadline|date:"Y-m-d" }}

0 commit comments

Comments
 (0)