mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1005 B
31 lines
1005 B
%h1 Dashboard
|
|
|
|
.row.fieldset
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p= link_to 'Add Time Entry', new_time_entry_path, class: 'btn btn-default btn-block'
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p= link_to 'View Timesheet', time_entries_path, class: 'btn btn-default btn-block'
|
|
|
|
- can_manage_bike = can? :manage, Bike
|
|
- has_bike = !@bike.nil?
|
|
- if can_manage_bike || has_bike
|
|
.row.fieldset
|
|
- if can_manage_bike
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p
|
|
= link_to 'Add Bike', new_bike_path, class: 'btn btn-default btn-block'
|
|
|
|
- if has_bike
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p
|
|
= link_to 'View Your Bike', bike_path(@bike), class: 'btn btn-default btn-block'
|
|
|
|
.row.fieldset
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p
|
|
= link_to 'Desktop View', admin_index_path, class: 'btn btn-default btn-block'
|
|
|
|
.row.fieldset
|
|
.col-xs-12.col-sm-3.col-lg-2
|
|
%p
|
|
= button_tag 'Logout', id: 'index_logout', class: 'btn btn-danger btn-block', data: {url: destroy_user_session_path}
|