app/templates/projrev/templatetags/_as_review.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 12 Aug 2009 19:30:12 +0530
changeset 42 4cf4c1f0e5bb
parent 27 37612f295cd4
child 47 09c3b7aaa535
permissions -rw-r--r--
Review form changes.

{% load review_helpers %}
<script type="text/javascript">
$(document).ready(function(){
$("#id_full_comment_{{ review.id }}").colorbox({width:"50%", inline:true, href:"#attributes_{{ review.id }}", title:"Comment and scores"});
});
</script>
<div style="display: none;">
 <div id="attributes_{{ review.id }}" style='padding:10px; background:#fff; text-align: left;'>
 {{ review.comment }}<br /><br />
 <table>
 <tr>
  <td>
   Feasibility of the proposed activity and the appropriateness of the time frame: 
  </td>
  <td><strong>{{ review.attribute1 }}</strong></td>
 </tr>
 <tr>
  <td>
   Uniqueness/novelty/innovation of the said proposal:
  </td>
  <td> <strong>{{ review.attribute2 }}</strong></td>
 </tr>
 <tr>
  <td>
   Scope for inter-institutional collaboration and development:
  </td>
  <td> <strong>{{ review.attribute3 }}</strong></td>
 </tr>
 <tr>
  <td>
   The organisation of the programme to be carried out:
  </td>
  <td> <strong>{{ review.attribute4 }}</strong></td>
 </tr>
 <tr>
  <td>
   The details of the work as the outlined by the principal investigator(PI):
  </td>
  <td><strong>{{ review.attribute5 }}</strong></td>
 </tr>
 <tr>
  <td>
   The details of the work as the outlined by the principal investigator(PI): 
  </td>
  <td><strong>{{ review.attribute6 }}</strong></td>
 </tr>
 <tr>
  <td>
   Social impact/reach/spread of the outcome of the proposal: 
  </td>
  <td><strong>{{ review.attribute7 }}</strong></td>
 </tr>
 <tr>
  <td>
   Contribution of the proposal to minimizing the digital divide in our country: 
  </td>
  <td><strong>{{ review.attribute8 }}</strong></td>
 </tr>
 <tr>
  <td>
   Any other matter which is likely to affect the execution of the project:
  </td>
  <td><strong>{{ review.attribute9 }}</strong></td>
 </tr>
 </table>
 </div>
</div>
<div class="review-center-box">
  Comment by: <strong>{{ review.reviewer }}</strong>,
On <strong>{{ review.reviewed_on|date:"jS F Y h:iA" }}</strong><br/><br/>
  {{ review.comment|wordwrap:"80"|splitline }}<br /><br/>
  Total Score: <strong>{{ total_score }} </strong>&nbsp;&nbsp;
  <a id="id_full_comment_{{ review.id }}" href="#">Click here to see complete comment and individual scores</a><br />
</div>