]> asedeno.scripts.mit.edu Git - bluechips.git/commitdiff
Add edit links for transfers and expenditures
authorEvan Broder <broder@mit.edu>
Fri, 25 Jul 2008 04:26:32 +0000 (04:26 +0000)
committerEvan Broder <broder@mit.edu>
Fri, 25 Jul 2008 04:26:32 +0000 (04:26 +0000)
bluechips/templates/base.mako

index 1aa31cb7bf1030d98bf337fdbbda4d8101089cee..c536c94275edcdf8be0d459726eeba255ab11cd5 100644 (file)
@@ -43,6 +43,7 @@
         <th>Spender</th>
         <th>Description</th>
         <th>Amount</th>
+        <th></th>
     </tr>
     % for e in es:
     <tr>
@@ -50,6 +51,9 @@
         <td>${e.spender.name}</td>
         <td>${e.description}</td>
         <td>${e.amount}</td>
+        <td>${h.link_to('Edit', h.url_for(controller='spend', 
+                                          action='edit',
+                                          id=e.id))}</td>
     </tr>
     % endfor
 </table>
@@ -63,6 +67,7 @@
         <th>To</th>
         <th>Description</th>
         <th>Amount</th>
+        <th></th>
     </tr>
     % for t in ts:
     <tr>
@@ -71,6 +76,9 @@
         <td>${t.creditor.name}</td>
         <td>${t.description}</td>
         <td>${t.amount}</td>
+        <td>${h.link_to('Edit', h.url_for(controller='transfer', 
+                                          action='edit',
+                                          id=t.id))}</td>
     </tr>
     % endfor
 </table>