| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php include 'header.php' ?>
- <section id="smallslider">
- <div class="subpage-head profile-head">
- <h1>Profilom</h1>
- </div>
- </section>
- <section id="content">
- <div class="text-wrap">
- <div class="breadcrumb"><a href="/">Home</a> » <a href="/profile/settings">Profilom</a> » <a href="#">Mentett kereséseim</a></div>
- <div class="menu-block">
- <?php include 'profile_menu.php'; ?>
- </div>
- <div class="text-block-alt">
- <h2 class="head overload">Mentett kereséseim</h2>
- <div class="results-block" style="padding-top: 0px; width: 100%;">
- <div class="result-list">
- <table>
- <thead>
- <tr>
- <th>Keresés időpontja</th>
- <th> </th>
- <th> </th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($searches as $search) : ?>
- <tr>
- <td><?=$search->sch_createdate?></td>
- <td>
- <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>
- </td>
- <td>
- <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>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- <div class="clear"></div>
- </div>
- </div>
- </div>
- <div class="clear"></div>
- </div>
- </section>
- <?php include 'footer.php' ?>
|