Split list files between, review and rank.
{% extends "projrev/base.html" %}
{% load review_helpers %}
{% block content %}
<div class="post">
<div class="list">
<table>
<tr>
<th class="first">Serial No.</th>
<th>MICR Code</th>
<th>Title</th>
<th>Line Item</th>
<th>Institution</th>
<th>State</th>
<th>District</th>
<th>Old Serial No.</th>
</tr>
{% for project in projects %}
{% if project.not_this_proposal %}
<div class='hidden' style="display: none;">
<div id='message_{{ project.project|serial_no:"new" }}' style='padding:10px; background:#fff;'>
This proposal is revised after you submitted a review. You will have to submit a new review to the revised proposal. Press the relevant button.<br />
<a href='{{ row_url }}{{ project.project.micr_code }}/{{ project.user_review.id }}'>Start with my previous review</a>
<a href='{{ row_url }}{{ project.project.micr_code }}'>Start a fresh review</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#getredirect_{{ project.project|serial_no:"new" }}').colorbox({width:"50%", inline:true, href:"#message_{{ project.project|serial_no:"new" }}", title:"What do you want to do?"});
});
</script>
{% endif %}
<tr class="row-a"><td>
{% if project.user_review %}
<a id='getredirect_{{ project.project|serial_no:"new" }}' href='{{ row_url }}{{ project.project.micr_code }}/{{ project.user_review.id }}'>
{% else %}
<a id='getredirect_{{ project.project|serial_no:"new" }}' href='{{ row_url }}{{ project.project.micr_code }}'>
{% endif %}
{{ project.project|serial_no:"new" }}
</td>
<td>{{ project.project.micr_code }}</td>
<td>{{ project.project.title }}</td>
<td>{{ project.project.line_item }}</td>
<td>{{ project.project.institution }}</td>
<td>{{ project.project.state }}</td>
<td>{{ project.project.district }}</td>
<td>{{ project.project|serial_no:"old" }}</td>
</a></tr>
{% endfor %}
</table>
</div>
</div>
{% endblock content %}