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
24 lines
634 B
HTML
24 lines
634 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2016, All Rights Reserved #}
|
|
{% load origin bootstrap3 static %}
|
|
|
|
{% block title %}Add {{ doc.name }} to your review wishes{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Add {{ doc.name }} to your review wishes
|
|
</h1>
|
|
|
|
<p>You are a reviewer for multiple teams, and need to select a team first.</p>
|
|
<form class="form-horizontal" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form layout="horizontal" %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Add to review wishes</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|