Star values recalled.
{% extends "projrev/base.html" %}
{% load review_helpers %}
{% block content %}
<div class="post">
<a name="TemplateInfo"></a>
<h1>Review the proposal</h1>
<p>The proposal details are given below followed by a Review form.</p>
<div class='review-center-box'>
<div class='review-left'>
Title:
</div>
<div class='review-right'>
{{ project.title }}
</div>
<br/>
<div class='review-left'>
Project MICR Code:
</div>
<div class='review-right'>
{{ project.micr_code }}
</div>
<br/>
<div class='review-left'>
Institution:
</div>
<div class='review-right'>
{{ project.institution }}
</div>
<br/>
<div class='review-left'>
Project Line Item:
</div>
<div class='review-right'>
{{ project.line_item }}
</div>
<br/>
<div class='review-left'>
Address:
</div>
<div class='review-right'>
{{ project.address }}
</div>
<br/>
<div class='review-left'>
City:
</div>
<div class='review-right'>
{{ project.city }}
</div>
<br/>
<div class='review-left'>
PIN Code:
</div>
<div class='review-right'>
{{ project.pin_code }}
</div>
<br/>
<div class='review-left'>
State:
</div>
<div class='review-right'>
{{ project.state }}
</div>
<br/>
<div class='review-left'>
District:
</div>
<div class='review-right'>
{{ project.district }}
</div>
<br/>
<div class='review-left'>
Proposal Document:
</div>
<div class='review-right'>
<a href="/site-content/{{ proposal_path }}">{{ proposal_name }}</a>
</div>
<br />
</div>
<form enctype="multipart/form-data" method="post" action="">
<p>
<p>
{{ form.attribute1.errors }}
<strong>{{ form.attribute1.label }}</strong><br />
{% as_star_for_score "attribute1" %}
{% if form.attribute1.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a1.errors }}
<label id='id_comment'>{{ form.comment_a1.label }}</label>{{ form.comment_a1 }}
</p>
<p>
{{ form.attribute2.errors }}
<strong>{{ form.attribute2.label }}</strong><br />
{% as_star_for_score "attribute2" %}
{% if form.attribute2.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a2.errors }}
<label id='id_comment'>{{ form.comment_a2.label }}</label>{{ form.comment_a2 }}
</p>
<p>
{{ form.attribute3.errors }}
<strong>{{ form.attribute3.label }}</strong><br />
{% as_star_for_score "attribute3" %}
{% if form.attribute3.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a3.errors }}
<label id='id_comment'>{{ form.comment_a3.label }}</label>{{ form.comment_a3 }}
</p>
<p>
{{ form.attribute4.errors }}
<strong>{{ form.attribute4.label }}</strong><br />
{% as_star_for_score "attribute4" %}
{% if form.attribute4.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a4.errors }}
<label id='id_comment'>{{ form.comment_a4.label }}</label>{{ form.comment_a4 }}
</p>
<p>
{{ form.attribute5.errors }}
<strong>{{ form.attribute5.label }}</strong><br />
{% as_star_for_score "attribute5" %}
{% if form.attribute5.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a5.errors }}
<label id='id_comment'>{{ form.comment_a5.label }}</label>{{ form.comment_a5 }}
</p>
<p>
{{ form.attribute6.errors }}
<strong>{{ form.attribute6.label }}</strong><br />
{% as_star_for_score "attribute6" %}
{% if form.attribute6.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a6.errors }}
<label id='id_comment'>{{ form.comment_a6.label }}</label>{{ form.comment_a6 }}
</p>
<p>
{{ form.attribute7.errors }}
<strong>{{ form.attribute7.label }}</strong><br />
{% as_star_for_score "attribute7" %}
{% if form.attribute7.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a7.errors }}
<label id='id_comment'>{{ form.comment_a7.label }}</label>{{ form.comment_a7 }}
</p>
<p>
{{ form.attribute8.errors }}
<strong>{{ form.attribute8.label }}</strong><br />
{% as_star_for_score "attribute8" %}
{% if form.attribute8.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a8.errors }}
<label id='id_comment'>{{ form.comment_a8.label }}</label>{{ form.comment_a8 }}
</p>
<p>
{{ form.attribute9.errors }}
<strong>{{ form.attribute9.label }}</strong><br />
{% as_star_for_score "attribute9" %}
{% if form.attribute9.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<p>
{{ form.comment_a9.errors }}
<label id='id_comment'>{{ form.comment_a9.label }}</label>{{ form.comment_a9 }}
</p>
<br /><br />
<p>
{% if form.comment.help_text %}
<script type="text/javascript">
$(document).ready( function() {
var tooltip = [
"<div class='tooltip'>",
" <div class='tooltip-body'>",
" <img src='/site-content/images/info.png' alt='' />",
" <h3>Info</h3>",
" <p>",
" {% autoescape off %}",
" {{ form.comment.help_text|linebreaksbr|escapejs }}",
" {% endautoescape %}",
" </p>",
" </div>",
" <div class='tooltip-bottom'></div>",
"</div>"
].join("");
var tooltip_object=null;
var documented = $("#id_{{ form.comment.name }}");
var not_fieldset = documented.attr('tagName') !== 'FIELDSET';
if (not_fieldset) {
documented.focus(function() {
if (tooltip_object==null) {
tooltip_object = $(tooltip).purr({usingTransparentPNG: true,removeTimer: 10000});
}
});
documented.blur(function() {
if (tooltip_object!==null) {
tooltip_object.remove();
tooltip_object=null;
}
});
}
else {
documented.find("input").hover(function() {
if (tooltip_object==null) {
tooltip_object = $(tooltip).purr({usingTransparentPNG: true,removeTimer: 10000});
}
},
function() {
if (tooltip_object!==null) {
tooltip_object.remove();
tooltip_object=null;
}
});
}
});
</script>
{% endif %}
{{ form.comment.errors }}
<label id='id_comment'>{{ form.comment.label }}</label>{{ form.comment }}{% if form.comment.field.required %}<span class="specialclass"> (required)</span>{% endif %}
</p>
<br />
<input class="button" type="submit" value="Submit Review" />
</p>
</form>
<p class="post-footer align-right">
<span class="comments">Reviews:
{% if nr_reviews %}
{{ nr_reviews }}
{% else %}
(<i>None</i>)
{% endif %}
</span>
<span class="date">Last reviewed:
{% if last_reviewed %}
{{ last_reviewed|date:"jS F Y h:iA" }}
{% else %}
(<i>Not Reviewed</i>)
{% endif %}
</span>
<span class="date">Last submitted:
{% if last_submitted %}
{{ last_submitted|date:"jS F Y h:iA" }}
{% else %}
(<i>New Submission</i>)
{% endif %}
</span>
</p>
{% if reviews %}
<br /><br />
<p>
<h2>Reviews: Comments and Scores:</h2>
{% for review in reviews %}
{% as_review review %}
{% endfor %}
</p>
{% endif %}
</div>
{% endblock content %}