Projekt

Obecné

Profil

Stáhnout (1.59 KB) Statistiky
| Větev: | Tag: | Revize:
<h2><?php echo __('Show approval type') ?></h2>
<?php
$links = array();

if ($state < 2 && $this->acl_check_edit('approval', 'types'))
$links[] = html::anchor('approval_types/edit/' . $approval_type->id, __('Edit'));

if ($state < 1 && $this->acl_check_delete('approval', 'types'))
$links[] = html::anchor('approval_types/delete/' . $approval_type->id, __('Delete'), array('class' => 'delete_link'));

echo implode(' | ', $links);
?>
<br /><br />
<table class="extended" cellspacing="0">
<tr>
<th><?php echo __('ID') ?></th>
<td><?php echo $approval_type->id ?></td>
</tr>
<tr>
<th><?php echo __('Name') ?></th>
<td><?php echo $approval_type->name ?></td>
</tr>
<tr>
<th><?php echo __('Comment') ?></th>
<td><?php echo $approval_type->comment ?></td>
</tr>
<tr>
<th><?php echo __('Group') ?></th>
<td><?php echo __('' . $approval_type->aro_group->name) ?></td>
</tr>
<tr>
<th><?php echo __('Minimal suggest amount') ?></th>
<td><?php echo $approval_type->min_suggest_amount ?></td>
</tr>
<tr>
<th><?php echo __('Type') ?></th>
<td><?php echo Approval_types_Controller::$types[$approval_type->type] ?></td>
</tr>
<tr>
<th><?php echo __('Percent for majority') ?></th>
<td><?php echo $approval_type->majority_percent ?>%</td>
</tr>
<tr>
<th><?php echo __('Interval') ?></th>
<td><?php
$interval = date::interval($approval_type->interval);
echo $interval['h'] . ' ' . strtolower(__('hours'))
?>
</td>
</tr>
<tr>
<th><?php echo __('Default vote') ?></th>
<td><?php echo Approval_types_Controller::$vote_options[$approval_type->default_vote]; ?></td>
</tr>
</table>
(3-3/3)