author | Madhusudan.C.S <madhusudancs@gmail.com> |
Tue, 11 Aug 2009 03:38:51 +0530 | |
changeset 39 | e7880a8f7e04 |
parent 0 | c94bd9ae70d2 |
child 41 | 64249ebaf65a |
permissions | -rw-r--r-- |
0 | 1 |
{% extends "projrev/base.html" %} |
2 |
{% block content %} |
|
3 |
<div class="post"> |
|
4 |
<div class="list"> |
|
5 |
<table> |
|
6 |
<tr> |
|
7 |
<th class="first">MICR Code</th> |
|
39
e7880a8f7e04
Changes to the data model for including blank districts.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
8 |
<th>Title</th> |
0 | 9 |
<th>Line Item</th> |
10 |
<th>Institution</th> |
|
11 |
<th>State</th> |
|
12 |
<th>District</th> |
|
13 |
</tr> |
|
14 |
{% for project in projects %} |
|
15 |
<tr class="row-a"><td><a href='{{ row_url }}{{ project.micr_code }}'> |
|
16 |
{{ project.micr_code }}</td> |
|
39
e7880a8f7e04
Changes to the data model for including blank districts.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
17 |
<td>{{ project.title }}</td> |
0 | 18 |
<td>{{ project.line_item }}</td> |
19 |
<td>{{ project.institution }}</td> |
|
20 |
<td>{{ project.state }}</td> |
|
21 |
<td>{{ project.district }}</td> |
|
22 |
</a></tr> |
|
23 |
{% endfor %} |
|
24 |
</table> |
|
25 |
</div> |
|
26 |
</div> |
|
27 |
{% endblock content %} |