tab/app/views/users/show.html.haml

29 lines
1 KiB
Text
Raw Normal View History

2015-09-08 19:39:13 +02:00
%h2= @user.name
2015-09-10 14:12:05 +02:00
= render 'transactions/new'
2015-09-09 21:26:19 +02:00
%table#transactions.pure-table.pure-table-striped{data: { source: user_path(@user) }}
2015-09-08 19:39:13 +02:00
%thead
%tr
2015-09-09 20:00:47 +02:00
%th Time
2015-09-08 19:39:13 +02:00
%th Amount
2015-09-09 20:00:47 +02:00
%th Peer
%th Issuer
2015-09-08 19:39:13 +02:00
%th Message
2015-09-09 20:54:16 +02:00
%tbody
%tfoot
%tr
2015-09-09 20:18:30 +02:00
%td.bound.input-listen{ 'data-input-type': 'date-range' }
2015-09-09 20:00:47 +02:00
%input.lower-bound{type: 'date', placeholder: 'after'}
= "<= Time <="
%input.upper-bound{type: 'date', placeholder: 'before'}
2015-09-09 20:18:30 +02:00
%td.bound.input-listen{ 'data-input-type': 'number-range' }
%input.lower-bound{type: 'number', placeholder: 'lower', class: 'pure-u-1-5'}
= "<= Amount <="
%input.upper-bound{type: 'number', placeholder: 'upper', class: 'pure-u-1-5'}
2015-09-09 20:18:30 +02:00
%td.input-listen{ 'data-input-type': 'text' }
%input{type: 'text', placeholder: 'Filter on Issuer'}
2015-09-09 20:18:30 +02:00
%td.input-listen{ 'data-input-type': 'text' }
%input{type: 'text', placeholder: 'Filter on Peer'}
%td.input-listen{ 'data-input-type': 'text' }
%input{type: 'text', placeholder: 'Filter on Message'}
2015-09-08 20:45:32 +02:00