app/templates/projrev/templatetags/_as_review.html
changeset 42 4cf4c1f0e5bb
parent 27 37612f295cd4
child 47 09c3b7aaa535
--- a/app/templates/projrev/templatetags/_as_review.html	Tue Aug 11 04:34:01 2009 +0530
+++ b/app/templates/projrev/templatetags/_as_review.html	Wed Aug 12 19:30:12 2009 +0530
@@ -1,17 +1,74 @@
-<p class="post-footer align-right">
-  Comment by: <strong>{{ review.reviewer}}</strong>,
-On <strong>{{ review.reviewed_on|date:"jS F Y h:iA" }}</strong>
-  Total Score: <strong>{{ total_score }}</strong><br />
-  Attribute 1: <strong>{{ review.attribute1 }},</strong> 
-  Attribute 2: <strong>{{ review.attribute2 }},</strong>
-  Attribute 3: <strong>{{ review.attribute3 }},</strong>
-  Attribute 4: <strong>{{ review.attribute4 }},</strong>
-  Attribute 5: <strong>{{ review.attribute5 }},</strong>
-  Attribute 6: <strong>{{ review.attribute6 }},</strong>
-  Attribute 7: <strong>{{ review.attribute7 }},</strong>
-  Attribute 8: <strong>{{ review.attribute8 }},</strong>
-  Attribute 9: <strong>{{ review.attribute9 }}</strong>
-</p>
+{% 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">
-  {{ review.comment }}
+  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>
\ No newline at end of file