author | Madhusudan.C.S <madhusudancs@gmail.com> |
Fri, 14 Aug 2009 11:07:24 +0530 | |
changeset 49 | 33c54f815fd5 |
parent 45 | 9ffe957d6159 |
permissions | -rw-r--r-- |
0 | 1 |
{% extends "projrev/base.html" %} |
49
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
2 |
{% load review_helpers %} |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
3 |
|
0 | 4 |
{% block content %} |
5 |
<div class="post"> |
|
6 |
<div class="list"> |
|
7 |
<table> |
|
8 |
<tr> |
|
49
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
9 |
<th class="first">Serial No.</th> |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
10 |
<th>Title</th> |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
11 |
<th>MICR Code</th> |
0 | 12 |
<th>Line Item</th> |
13 |
<th>Institution</th> |
|
14 |
<th>State</th> |
|
15 |
<th>District</th> |
|
49
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
16 |
<th>Old Serial No.</th> |
0 | 17 |
</tr> |
18 |
{% for project in projects %} |
|
49
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
19 |
<tr class="row-a"><td>{{ project|serial_no:"new" }}</td> |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
20 |
<td><a href='{{ row_url }}{{ project.micr_code }}'>{{ project.title }}</a></td> |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
21 |
<td>{{ project.micr_code }}</td> |
45
9ffe957d6159
Split list files between, review and rank.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
44
diff
changeset
|
22 |
<td>{{ project.line_item }}</td> |
9ffe957d6159
Split list files between, review and rank.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
44
diff
changeset
|
23 |
<td>{{ project.institution }}</td> |
9ffe957d6159
Split list files between, review and rank.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
44
diff
changeset
|
24 |
<td>{{ project.state }}</td> |
9ffe957d6159
Split list files between, review and rank.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
44
diff
changeset
|
25 |
<td>{{ project.district }}</td> |
49
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
26 |
<td>{{ project|serial_no:"old" }}</td> |
33c54f815fd5
Changed rank list.html to be consistent with review list.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
45
diff
changeset
|
27 |
</tr> |
0 | 28 |
{% endfor %} |
29 |
</table> |
|
30 |
</div> |
|
31 |
</div> |
|
32 |
{% endblock content %} |