Немного поправил текст на странице

This commit is contained in:
Krivchikov Dmitry 2016-05-27 23:45:09 +03:00
parent 5425af6e55
commit 9684d17103
1 changed files with 5 additions and 2 deletions

View File

@ -22,8 +22,11 @@
if ($trips) { if ($trips) {
foreach ($trips as $trip): foreach ($trips as $trip):
?> ?>
<?= $trip->id ?> — <a href="/?track=<?= $trip->id ?>"><?= $trip->name ?></a> (<?= $trip->createdAt ?>)<br/> <?= $trip->id ?> — <a href="/?track=<?= $trip->id ?>"><?= $trip->name ?></a> (<?= $trip->createdAt ?>)
<?php if($trip->status == Trips::STATUS_PUBLIC):?>
<span class="glyphicon glyphicon-eye-open" style="color: #aaa;" aria-hidden="true" title="Публичный трек. Его могут видеть другие пользователи."></span>
<?php endif;?>
<br/>
<?php <?php
endforeach; endforeach;