This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Sequenzia/app/views/post/favorites.php

9 lines
230 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<h3><?= $this->t('.title') ?></h3>
<ul>
<?php $this->users.each do |u| ?>
<li><?= linkTo $this->h(u.pretty_name), 'post#index', 'tags' => 'vote:3:#{u.name} order:vote' ?></li>
<?php end ?>
</ul>
<?= $this->partial('footer') ?>