profile_searches_view.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php include 'header.php' ?>
  2. <section id="smallslider">
  3. <div class="subpage-head profile-head">
  4. <h1>Profilom</h1>
  5. </div>
  6. </section>
  7. <section id="content">
  8. <div class="text-wrap">
  9. <div class="breadcrumb"><a href="/">Home</a> &raquo; <a href="/profile/settings">Profilom</a> &raquo; <a href="#">Mentett kereséseim</a></div>
  10. <div class="menu-block">
  11. <?php include 'profile_menu.php'; ?>
  12. </div>
  13. <div class="text-block-alt">
  14. <h2 class="head overload">Mentett kereséseim</h2>
  15. <div class="results-block" style="padding-top: 0px; width: 100%;">
  16. <div class="result-list">
  17. <table>
  18. <thead>
  19. <tr>
  20. <th>Keresés időpontja</th>
  21. <th>&nbsp;</th>
  22. <th>&nbsp;</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <?php foreach ($searches as $search) : ?>
  27. <tr>
  28. <td><?=$search->sch_createdate?></td>
  29. <td>
  30. <button type="button" name="show" onclick="window.location='/property/search/loadhistory/?id=<?=$search->sch_id?>';" class="btn-black mini justicon"><i class="fas fa-eye"></i> Megtekintés</button>
  31. </td>
  32. <td>
  33. <button type="button" name="show" onclick="window.location='/profile/searches/delete/?id=<?=$search->sch_id?>';" class="btn-black mini justicon"><i class="fas fa-trash"></i> Törlés</button>
  34. </td>
  35. </tr>
  36. <?php endforeach; ?>
  37. </tbody>
  38. </table>
  39. <div class="clear"></div>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="clear"></div>
  44. </div>
  45. </section>
  46. <?php include 'footer.php' ?>