--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/templates/projrev/proposal/list.html Tue Aug 04 02:21:15 2009 -0400
@@ -0,0 +1,25 @@
+{% extends "projrev/base.html" %}
+{% block content %}
+<div class="post">
+ <div class="list">
+ <table>
+ <tr>
+ <th class="first">MICR Code</th>
+ <th>Line Item</th>
+ <th>Institution</th>
+ <th>State</th>
+ <th>District</th>
+ </tr>
+ {% for project in projects %}
+ <tr class="row-a"><td><a href='{{ row_url }}{{ project.micr_code }}'>
+ {{ project.micr_code }}</td>
+ <td>{{ project.line_item }}</td>
+ <td>{{ project.institution }}</td>
+ <td>{{ project.state }}</td>
+ <td>{{ project.district }}</td>
+ </a></tr>
+ {% endfor %}
+ </table>
+ </div>
+</div>
+{% endblock content %}
\ No newline at end of file