/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
Donations
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Donations
mkdir
upload
Name
Size
Mode
Actions
index.php
1795
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/Donations/index.php
(1795B)
<?php $this->extend('/Common/index'); $this->assign('title', __('Donations Ihelp')); ?> <thead> <tr> <th><?= $this->Paginator->sort('id') ?></th> <th><?= $this->Paginator->sort('user_id') ?></th> <th><?= $this->Paginator->sort('cause_id') ?></th> <th><?= $this->Paginator->sort('transaction_id') ?></th> <th><?= $this->Paginator->sort('full_name') ?></th> <th><?= $this->Paginator->sort('nickname') ?></th> <th><?= $this->Paginator->sort('phone') ?></th> <th><?= $this->Paginator->sort('email') ?></th> <th><?= $this->Paginator->sort('ihelp_value') ?></th> <th><?= $this->Paginator->sort('created') ?></th> </tr> </thead> <tbody> <?php foreach ($donations as $donation) : ?> <tr> <td><?= $this->Number->format($donation->id) ?></td> <td><?= $donation->has('user') ? $this->Html->link('<i class="fa fa-user-circle"></i>', ['controller' => 'Users', 'action' => 'view', $donation->user->id], ['escapeTitle' => false]) : '<i class="fa fa-times"></i>' ?></td> <td><?= $donation->has('cause') ? $this->Html->link($donation->cause->name, ['controller' => 'Causes', 'action' => 'view', $donation->cause->id]) : '' ?></td> <td><?= $donation->transaction_id === null ? '' : $this->Number->format($donation->transaction_id) ?></td> <td><?= h($donation->full_name) ?></td> <td><?= h($donation->nickname) ?></td> <td><?= h($donation->phone) ?></td> <td><?= h($donation->email) ?></td> <td><?= $this->Number->format($donation->ihelp_value) ?></td> <td><?= h($donation->created) ?></td> </tr> <?php endforeach; ?> </tbody> <?php $this->start('filter'); ?> <?php $this->end(); ?>
Save
cmd:
run