1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
2012-12-09 13:15:38 -05:00

14 lines
665 B
Plaintext

- model_class = bike_status.class
.page-header
%h1=t '.title', :default => model_class.model_name.human
%p
%strong= model_class.human_attribute_name(:status) + ':'
%br
= bike_status.status
.form-actions
= link_to t('.back', :default => t("helpers.links.back")), bike_statuses_path, :class => 'btn'
= link_to t('.edit', :default => t("helpers.links.edit")), edit_bike_status_path(bike_status), :class => 'btn'
= link_to t('.destroy', :default => t("helpers.links.destroy")), bike_status_path(bike_status), :method => "delete", :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')), :class => 'btn btn-danger'