Advertisement
Guest User

index.ctp

a guest
Sep 1st, 2015
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <h2> Tareas </h2>
  2. <?php if(empty($tareas)): ?>
  3. NO hay tareas en esta lista
  4. <?php else: ?>
  5. <table>
  6. <tr>
  7. <th> Titulo> </th>
  8. <th> Estatus </th>
  9. <th> Creado </th>
  10. <th> Modificado </th>
  11. <th> Acciones </th>
  12. </tr>
  13. <?php foreach ($tareas as $tarea): ?>
  14. <tr>
  15. <td>
  16. <?php echo $tarea['Tarea']['titulo'] ?>
  17. </td>
  18. <td>
  19. <?php
  20. if($tarea['Tarea']['hecha'])echo "hecha";
  21. else echo "Pendiente";
  22. ?>
  23. </td>
  24. <td>
  25. <?php echo $tarea['Tarea']['created'] ?>
  26. </td>
  27. <td>
  28. <?php echo $tarea['Tarea']['modified'] ?>
  29. </td>
  30. <td>
  31. <?php echo $html->link('Editar',array('action'=>'edit',$tarea['Tarea']['id'])); ?>
  32. <?php echo $html->link('Borrar',array('action'=>'delete',$tarea['Tarea']['id']),null, '¿Estas seguro?'); ?>
  33. </td>
  34. </tr>
  35. <?php endforeach; ?>
  36. </table>
  37. <?php endif; ?>
  38. <?php echo $html->link('Agregar Tarea', array('action'=>'add')); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement