indexSuccess.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php //$katao_member_group = $form->getObject() ?>
  2. <div class="content-add01">
  3. <div class="heading01"><h1>Adh&eacute;sions</h1></div>
  4. </div>
  5. <table class="admin-list">
  6. <tfoot>
  7. <a href="">Ajouter une ann&eacute;e</a>
  8. </tfoot>
  9. <thead>
  10. <th>Année</th>
  11. <th>Montant</th>
  12. <th>Moyen de paiement</th>
  13. <th>Nouvelle adhésion</th>
  14. <th>Actions</th>
  15. </thead>
  16. <tbody>
  17. <?php foreach($list_objet as $obj): ?>
  18. <tr>
  19. <td>
  20. <?php $year = getdate($obj->getYear()); echo $year[year]; ?>
  21. </td>
  22. <td>
  23. <?php echo $obj->getAmount()." €" ?>
  24. </td>
  25. <td>
  26. <?php echo KataoMemberAdhesionPeer::$HASH_TABLE['payment_kind'][$obj->getPaymentKind()] ?>
  27. </td>
  28. <td>
  29. <?php echo KataoMemberAdhesionPeer::$HASH_TABLE['type'][$obj->getType()] ?>
  30. </td>
  31. <td>
  32. <a href='<?php echo url_for('@katao_member_adhesion_edit?id='.$obj->getId()) ?>'><?php echo image_tag('actions/edit.png') ?></a>
  33. <a href='<?php echo url_for('@katao_member_adhesion_delete?userid='.$userid.'&id='.$obj->getId()) ?>'><?php echo image_tag('actions/delete.png')?> </a>
  34. </td>
  35. </tr>
  36. <?php endforeach ?>
  37. </tbody>
  38. </table>