Advertisement
Guest User

Untitled

a guest
Feb 8th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | None | 0 0
  1. <section id="gridCustomization">
  2.     <table class="table table-bordered table-striped">
  3.         <thead>
  4.             <tr>
  5.                 <th>ID</</th>
  6.                 <th>Naziv događaja</th>
  7.                 <th>Opis događaja</th>
  8.                 <th>Vrijeme početka</th>
  9.                 <th>Datum događaja</th>
  10.                 <th>Ulaz</th>
  11.                 <th>Datum kreiranja</th>
  12.                 <th>Akcija</th>
  13.             </tr>      
  14.         </thead>
  15.         <?php foreach ($partys as $party){?>
  16.             <tr>
  17.                 <td><?=$party["Partys"]["id"]?></td>
  18.                 <td><?=$party["Partys"]["title"]?></td>
  19.                 <td><?=$party["Partys"]["description"]?></td>
  20.                 <td><?=$party["Partys"]["time"]?></td>
  21.                 <td><?=$party["Partys"]["date"]?></td>
  22.                 <td><?=$party["Partys"]["entry"]?></td>
  23.                 <td><?=$party["Partys"]["created"]?></td>
  24.                 <td>
  25.                
  26.                 <?php echo $this->Html->link('Edit', array('action' => 'edit', $party['Partys']['id']));?>
  27.                
  28.                  <?php echo $this->Form->postLink(
  29.                                     'Delete',
  30.                                     array('action' => 'admin_delete', $party['Partys']['id']),
  31.                                     array('confirm' => 'Are you sure?'));?>
  32.                 </td>
  33.             </tr>
  34.         <?php }?>
  35.        
  36.    
  37.     </table>
  38. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement