mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
<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>
|
|
<?= $this->a(t('Remove'), 'hourlyrate', 'confirm', array('user_id' => $user['id'], 'rate_id' => $rate['id'])) ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
|
|
<h3><?= t('Add new rate') ?></h3>
|
|
<?php endif ?>
|
|
|
|
<form method="post" action="<?= $this->u('hourlyrate', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off">
|
|
|
|
<?= $this->formHidden('user_id', $values) ?>
|
|
<?= $this->formCsrf() ?>
|
|
|
|
<?= $this->formLabel(t('Hourly rate'), 'rate') ?>
|
|
<?= $this->formText('rate', $values, $errors, array('required'), 'form-numeric') ?>
|
|
|
|
<?= $this->formLabel(t('Currency'), 'currency') ?>
|
|
<?= $this->formSelect('currency', $currencies_list, $values, $errors, array('required')) ?>
|
|
|
|
<?= $this->formLabel(t('Effective date'), 'date_effective') ?>
|
|
<?= $this->formText('date_effective', $values, $errors, array('required'), 'form-date') ?>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
</div>
|
|
</form>
|