app/templates/projrev/proposal/list.html
changeset 0 c94bd9ae70d2
child 39 e7880a8f7e04
equal deleted inserted replaced
-1:000000000000 0:c94bd9ae70d2
       
     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>
       
     8       <th>Line Item</th>
       
     9       <th>Institution</th>
       
    10       <th>State</th>
       
    11       <th>District</th>
       
    12     </tr>
       
    13     {% for project in projects %}
       
    14       <tr class="row-a"><td><a href='{{ row_url }}{{ project.micr_code }}'>
       
    15         {{ project.micr_code }}</td>
       
    16         <td>{{ project.line_item }}</td>
       
    17         <td>{{ project.institution }}</td>
       
    18         <td>{{ project.state }}</td>
       
    19         <td>{{ project.district }}</td>
       
    20       </a></tr>
       
    21     {% endfor %}
       
    22   </table>
       
    23   </div>
       
    24 </div>
       
    25 {% endblock content %}