freenetis-github/application/views/clouds/show.php @ c1bdc1c4
8baed187 | Michal Kliment | <h2><?php echo $cloud->name ?></h2>
|
|
<?php
|
|||
if ($this->acl_check_edit('Clouds_Controller', 'clouds'))
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | echo html::anchor('clouds/edit/' . $cloud->id, __('Edit cloud'));
|
|
if (module::e('notification') &&
|
|||
$this->acl_check_new('Notifications_Controller', 'cloud'))
|
|||
echo ' | ' . html::anchor('notifications/cloud/' . $cloud->id, __('Notifications'));
|
|||
8baed187 | Michal Kliment | }
|
|
?>
|
|||
<br /><br />
|
|||
<h3><?php echo __('Subnets') ?></h3>
|
|||
<?php echo $subnets ?>
|
|||
<br />
|
|||
<h3><?php echo __('Admins') ?></h3>
|
|||
<?php echo $admins ?>
|