On the main page of a document and in document search results, a new button allows review team members to add a review wish for that document. For reviewers that are only on one team, this essentially works identical to tracking a document. Reviewers that are on multiple teams are lead through an intermediate step to select a review team, and then returned to their search or document page. Commit ready for merge. - Legacy-Id: 16939
21 lines
519 B
HTML
21 lines
519 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2016, All Rights Reserved #}
|
|
{% load origin bootstrap3 static %}
|
|
|
|
{% block title %}Remove {{ doc.name }} from your review wishes{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Remove {{ doc.name }} from your review wishes
|
|
</h1>
|
|
|
|
<form class="form-horizontal" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Remove from review wishes</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|