Logo white

Yarik / maps

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • maps
  • frontend
  • views
  • point
  • row.php
  • first commit
    b41d5459
    Yarik authored
    2016-07-12 12:37:21 +0300  
    Browse Code ยป
row.php 283 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
    use common\models\Point;
    use yii\web\View;

    /**
     * @var View  $this
     * @var Point $point
     */
?>
<div class="passport_point_item" data-key="<?php echo $point->num; ?>">
    <?php
        echo $this->render('_point', [ 'model' => $point ]);
    ?>
</div>