Add link to review request page to review result page. (#6596)

Remove link to self on review result page.
This commit is contained in:
Tero Kivinen 2023-11-05 03:57:04 -05:00 committed by GitHub
parent fcf1a9a40d
commit 2f5bbebf70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,7 +227,21 @@
{% endif %}
</td>
</tr>
{% if assignment.state_id != "withdrawn" and assignment.state_id != "no-response" and assignment.state_id != "rejected" %}
{% if doc == assignment.review %}
<tr>
<th scope="row">
</th>
<th scope="row">
Request
</th>
<td>
<a href="{% url "ietf.doc.views_review.review_request" request_id=review_req.id name=review_req.doc.name %}">
{{ review_req }}
</a>
</td>
</tr>
{% endif %}
{% if assignment.state_id != "withdrawn" and assignment.state_id != "no-response" and assignment.state_id != "rejected" and doc != assignment.review%}
<tr>
<th scope="row">
</th>
@ -339,4 +353,4 @@
</i>
Assign reviewer
</a>
{% endif %}
{% endif %}