diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-07 16:50:36 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-07 16:50:36 -0500 |
commit | 732899564517c6efd9ef965f3f843309a222ce50 (patch) | |
tree | bc49df0d3685c6f6447b4e74146ef3f8bc8aa730 /app/Template/hourlyrate/remove.php | |
parent | 313318a40da51575212c8d299fa1b2ed4c83ca1b (diff) |
Add user cost
Diffstat (limited to 'app/Template/hourlyrate/remove.php')
-rw-r--r-- | app/Template/hourlyrate/remove.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Template/hourlyrate/remove.php b/app/Template/hourlyrate/remove.php new file mode 100644 index 00000000..7f22728e --- /dev/null +++ b/app/Template/hourlyrate/remove.php @@ -0,0 +1,13 @@ +<div class="page-header"> + <h2><?= t('Remove hourly rate') ?></h2> +</div> + +<div class="confirm"> + <p class="alert alert-info"><?= t('Do you really want to remove this hourly rate?') ?></p> + + <div class="form-actions"> + <?= $this->a(t('Yes'), 'hourlyrate', 'remove', array('user_id' => $user['id'], 'rate_id' => $rate_id), true, 'btn btn-red') ?> + <?= t('or') ?> + <?= $this->a(t('cancel'), 'hourlyrate', 'index', array('user_id' => $user['id'])) ?> + </div> +</div>
\ No newline at end of file |