Files
growstuff/app/views/crops/_wrangle.html.haml
2017-02-06 10:31:45 +13:00

15 lines
452 B
Plaintext

- if can?(:edit, crop) || can?(:destroy, crop)
%h4 Crop wrangling
%p
You are a
= succeed "." do
%strong CROP WRANGLER
%p
- if can? :edit, crop
= link_to 'Edit crop', edit_crop_path(crop), class: 'btn btn-default btn-xs'
- if can? :destroy, crop
= link_to 'Delete crop', crop,
method: :delete,
data: { confirm: 'Are you sure?' },
class: 'btn btn-default btn-xs'