app/templates/projrev/proposal/list.html
changeset 39 e7880a8f7e04
parent 0 c94bd9ae70d2
child 41 64249ebaf65a
equal deleted inserted replaced
38:3cb38edbe05f 39:e7880a8f7e04
     3 <div class="post">
     3 <div class="post">
     4   <div class="list">
     4   <div class="list">
     5   <table>
     5   <table>
     6     <tr>
     6     <tr>
     7       <th class="first">MICR Code</th>
     7       <th class="first">MICR Code</th>
       
     8       <th>Title</th>
     8       <th>Line Item</th>
     9       <th>Line Item</th>
     9       <th>Institution</th>
    10       <th>Institution</th>
    10       <th>State</th>
    11       <th>State</th>
    11       <th>District</th>
    12       <th>District</th>
    12     </tr>
    13     </tr>
    13     {% for project in projects %}
    14     {% for project in projects %}
    14       <tr class="row-a"><td><a href='{{ row_url }}{{ project.micr_code }}'>
    15       <tr class="row-a"><td><a href='{{ row_url }}{{ project.micr_code }}'>
    15         {{ project.micr_code }}</td>
    16         {{ project.micr_code }}</td>
       
    17         <td>{{ project.title }}</td>
    16         <td>{{ project.line_item }}</td>
    18         <td>{{ project.line_item }}</td>
    17         <td>{{ project.institution }}</td>
    19         <td>{{ project.institution }}</td>
    18         <td>{{ project.state }}</td>
    20         <td>{{ project.state }}</td>
    19         <td>{{ project.district }}</td>
    21         <td>{{ project.district }}</td>
    20       </a></tr>
    22       </a></tr>