Выбор типа точки на странице с большим списком

This commit is contained in:
Krivchikov Dmitry 2015-06-28 09:37:59 +03:00
parent ce178ddea9
commit f4294405c6
1 changed files with 11 additions and 0 deletions

View File

@ -10,6 +10,17 @@
<hr/> <hr/>
<?php endif; ?> <?php endif; ?>
<h3>Выбор типа точки</h3>
<?php
foreach ($categories as $category) {
print "<a href='/page/points/category/$category->id'>";
print "<img src='$category->icon' title='$category->name' />";
print "</a>";
}
?>
<h3>Список точек</h3> <h3>Список точек</h3>
<?php foreach ($points as $point): ?> <?php foreach ($points as $point): ?>