app/templates/projrev/templatetags/_as_review.html
changeset 42 4cf4c1f0e5bb
parent 27 37612f295cd4
child 47 09c3b7aaa535
equal deleted inserted replaced
41:64249ebaf65a 42:4cf4c1f0e5bb
     1 <p class="post-footer align-right">
     1 {% load review_helpers %}
     2   Comment by: <strong>{{ review.reviewer}}</strong>,
     2 <script type="text/javascript">
     3 On <strong>{{ review.reviewed_on|date:"jS F Y h:iA" }}</strong>
     3 $(document).ready(function(){
     4   Total Score: <strong>{{ total_score }}</strong><br />
     4 $("#id_full_comment_{{ review.id }}").colorbox({width:"50%", inline:true, href:"#attributes_{{ review.id }}", title:"Comment and scores"});
     5   Attribute 1: <strong>{{ review.attribute1 }},</strong> 
     5 });
     6   Attribute 2: <strong>{{ review.attribute2 }},</strong>
     6 </script>
     7   Attribute 3: <strong>{{ review.attribute3 }},</strong>
     7 <div style="display: none;">
     8   Attribute 4: <strong>{{ review.attribute4 }},</strong>
     8  <div id="attributes_{{ review.id }}" style='padding:10px; background:#fff; text-align: left;'>
     9   Attribute 5: <strong>{{ review.attribute5 }},</strong>
     9  {{ review.comment }}<br /><br />
    10   Attribute 6: <strong>{{ review.attribute6 }},</strong>
    10  <table>
    11   Attribute 7: <strong>{{ review.attribute7 }},</strong>
    11  <tr>
    12   Attribute 8: <strong>{{ review.attribute8 }},</strong>
    12   <td>
    13   Attribute 9: <strong>{{ review.attribute9 }}</strong>
    13    Feasibility of the proposed activity and the appropriateness of the time frame: 
    14 </p>
    14   </td>
       
    15   <td><strong>{{ review.attribute1 }}</strong></td>
       
    16  </tr>
       
    17  <tr>
       
    18   <td>
       
    19    Uniqueness/novelty/innovation of the said proposal:
       
    20   </td>
       
    21   <td> <strong>{{ review.attribute2 }}</strong></td>
       
    22  </tr>
       
    23  <tr>
       
    24   <td>
       
    25    Scope for inter-institutional collaboration and development:
       
    26   </td>
       
    27   <td> <strong>{{ review.attribute3 }}</strong></td>
       
    28  </tr>
       
    29  <tr>
       
    30   <td>
       
    31    The organisation of the programme to be carried out:
       
    32   </td>
       
    33   <td> <strong>{{ review.attribute4 }}</strong></td>
       
    34  </tr>
       
    35  <tr>
       
    36   <td>
       
    37    The details of the work as the outlined by the principal investigator(PI):
       
    38   </td>
       
    39   <td><strong>{{ review.attribute5 }}</strong></td>
       
    40  </tr>
       
    41  <tr>
       
    42   <td>
       
    43    The details of the work as the outlined by the principal investigator(PI): 
       
    44   </td>
       
    45   <td><strong>{{ review.attribute6 }}</strong></td>
       
    46  </tr>
       
    47  <tr>
       
    48   <td>
       
    49    Social impact/reach/spread of the outcome of the proposal: 
       
    50   </td>
       
    51   <td><strong>{{ review.attribute7 }}</strong></td>
       
    52  </tr>
       
    53  <tr>
       
    54   <td>
       
    55    Contribution of the proposal to minimizing the digital divide in our country: 
       
    56   </td>
       
    57   <td><strong>{{ review.attribute8 }}</strong></td>
       
    58  </tr>
       
    59  <tr>
       
    60   <td>
       
    61    Any other matter which is likely to affect the execution of the project:
       
    62   </td>
       
    63   <td><strong>{{ review.attribute9 }}</strong></td>
       
    64  </tr>
       
    65  </table>
       
    66  </div>
       
    67 </div>
    15 <div class="review-center-box">
    68 <div class="review-center-box">
    16   {{ review.comment }}
    69   Comment by: <strong>{{ review.reviewer }}</strong>,
       
    70 On <strong>{{ review.reviewed_on|date:"jS F Y h:iA" }}</strong><br/><br/>
       
    71   {{ review.comment|wordwrap:"80"|splitline }}<br /><br/>
       
    72   Total Score: <strong>{{ total_score }} </strong>&nbsp;&nbsp;
       
    73   <a id="id_full_comment_{{ review.id }}" href="#">Click here to see complete comment and individual scores</a><br />
    17 </div>
    74 </div>