Skip to content

Commit 7c7e9ae

Browse files
committed
Moved email open assignment summary from subpage to the main review request page. Fixes ietf-tools#2091. Commit ready for merge
- Legacy-Id: 14356
1 parent 5ac6cf3 commit 7c7e9ae

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

ietf/group/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def construct_group_menu_context(request, group, selected, group_type, others):
221221

222222
if Role.objects.filter(name="secr", group=group, person__user=request.user).exists():
223223
actions.append((u"Secretary settings", urlreverse(ietf.group.views.change_review_secretary_settings, kwargs=kwargs)))
224-
224+
actions.append((u"Email open assignments summary", urlreverse(ietf.group.views.email_open_review_assignments, kwargs=dict(acronym=group.acronym, group_type=group.type_id))))
225225

226226
if group.state_id != "conclude" and (is_admin or can_manage):
227227
can_edit_group = True

ietf/templates/group/manage_review_requests.html

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@
1515

1616
<h1>Manage {{ assignment_status }} open review requests for {{ group.acronym }}</h1>
1717

18-
<p>Other options:
19-
<a href="{% url "ietf.group.views.review_requests" group_type=group.type_id acronym=group.acronym %}">All review requests</a>
20-
- <a href="{% url "ietf.group.views.reviewer_overview" group_type=group.type_id acronym=group.acronym %}">Reviewers</a>
21-
- <a href="{% url "ietf.group.views.email_open_review_assignments" group_type=group.type_id acronym=group.acronym %}?next={{ request.get_full_path|urlencode }}">Email open assignments summary</a>
22-
{% if other_assignment_status %}
23-
- <a href="{% url "ietf.group.views.manage_review_requests" group_type=group.type_id acronym=group.acronym assignment_status=other_assignment_status %}">Manage {{ other_assignment_status }} reviews</a>
24-
{% endif %}
25-
</p>
26-
2718
{% if newly_closed > 0 or newly_opened > 0 or newly_assigned > 0 %}
2819
<p class="alert alert-danger">
2920
Changes since last refresh:

0 commit comments

Comments
 (0)