2015-04-21 17:56:16 +02:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Hourly rates') ?></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (! empty($rates)): ?>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th><?= t('Hourly rate') ?></th>
|
|
|
|
<th><?= t('Currency') ?></th>
|
|
|
|
<th><?= t('Effective date') ?></th>
|
|
|
|
<th><?= t('Action') ?></th>
|
|
|
|
</tr>
|
|
|
|
<?php foreach ($rates as $rate): ?>
|
|
|
|
<tr>
|
|
|
|
<td><?= n($rate['rate']) ?></td>
|
|
|
|
<td><?= $rate['currency'] ?></td>
|
|
|
|
<td><?= dt('%b %e, %Y', $rate['date_effective']) ?></td>
|
|
|
|
<td>
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->url->link(t('Remove'), 'hourlyrate', 'confirm', array('user_id' => $user['id'], 'rate_id' => $rate['id'])) ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h3><?= t('Add new rate') ?></h3>
|
|
|
|
<?php endif ?>
|
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<form method="post" action="<?= $this->url->href('hourlyrate', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off">
|
2015-04-21 17:56:16 +02:00
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->form->hidden('user_id', $values) ?>
|
|
|
|
<?= $this->form->csrf() ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->form->label(t('Hourly rate'), 'rate') ?>
|
|
|
|
<?= $this->form->text('rate', $values, $errors, array('required'), 'form-numeric') ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->form->label(t('Currency'), 'currency') ?>
|
|
|
|
<?= $this->form->select('currency', $currencies_list, $values, $errors, array('required')) ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->form->label(t('Effective date'), 'date_effective') ?>
|
|
|
|
<?= $this->form->text('date_effective', $values, $errors, array('required'), 'form-date') ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
|
|
</div>
|
|
|
|
</form>
|