index.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. require_once('../view/template/header.php');
  3. ?>
  4. <a href="index.php?action=create-drug" class="btn btn-info">Новое Лекарство</a>
  5. <table class="table table-striped">
  6. <thead>
  7. <tr>
  8. <th>Наименование</th>
  9. <th>Группа</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php foreach ($drugs as $drug) { ?>
  14. <tr>
  15. <td><?= htmlspecialchars($drug->name) ?></td>
  16. <td><?= htmlspecialchars($drug->group) ?></td>
  17. <td>
  18. <a href="index.php?action=view-drug&id=<?= $drug->id ?>" class="btn btn-primary">
  19. <i class="glyphicon glyphicon-eye-open"></i>
  20. </a>
  21. <a href="index.php?action=update-drug&id=<?= $drug->id ?>" class="btn btn-warning">
  22. <i class="glyphicon glyphicon-pencil"></i>
  23. </a>
  24. <a href="index.php?action=delete-drug&id=<?= $drug->id ?>" class="btn btn-danger">
  25. <i class="glyphicon glyphicon-trash"></i>
  26. </a>
  27. </td>
  28. </tr>
  29. <?php } ?>
  30. </tbody>
  31. </table>
  32. <?php
  33. require_once('../view/template/footer.php');
  34. ?>