21 lines
434 B
PHP
21 lines
434 B
PHP
<?php
|
|
$this->incView('include/page-top', false);
|
|
|
|
?>
|
|
<h1>Select user whose tasks you want to see</h1>
|
|
<ul>
|
|
<?php
|
|
while ($this->data->next()) {
|
|
echo '<li>';
|
|
if ($this->data->getUid() == $this->switch_id) {
|
|
echo $this->data->html('nickname');
|
|
} else {
|
|
echo '<a href="/admin/switch/id/'.$this->data->getUid().'">'.$this->data->html('nickname').'</a>';
|
|
}
|
|
echo '</li>';
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php
|
|
$this->incView('include/page-bot', false);
|