tab/app/views/pages/_requests.html.haml
2017-01-14 16:22:44 +01:00

24 lines
751 B
Plaintext

.card-wrapper
- if @requests.any?
.card
.padded
%h3 Requests
- @requests.each do |r|
.request.pure-g
.pure-u-1-3
%h4= r.message
= r.creditor.name
.pure-u-1-3
= euro_from_cents r.amount
.pure-u-1-3.actions
.btn-group
= link_to request_confirm_path(r), method: :post, class: 'btn btn-default btn-success' do
%span.glyphicon.glyphicon-ok
= link_to request_decline_path(r), method: :post, class: 'btn btn-default btn-danger' do
%span.glyphicon.glyphicon-remove
.clear-both
- else
.card.padded
%span.info-message
You have no open requests at the moment.