Comment #9 on issue 552 by [email protected]: Provide a template for the
Testing Done and Description sections
http://code.google.com/p/reviewboard/issues/detail?id=552
Just a quick hack to add a default text in case the review has not
description.
In reviewboard/templates/reviews/new_review_request.html
change
<pre id="description" class="editable">{{review_request_details.description|
escape}</pre>
with
<pre id="description" class="editable">{% if
review_request_details.description %}{{review_request_details.description|
escape}}{% else %} YOUR TEMPLATE TEXT HERE {% endif %}</pre>
Maybe you can also use include to put the text as an external file
{% include "reviews/review_description_template.html" %}
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/reviewboard-issues?hl=en.