Skip to content

Commit

Permalink
commit missing template
Browse files Browse the repository at this point in the history
  • Loading branch information
kwappa committed Jan 19, 2015
1 parent ae8694c commit e815b31
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions app/views/users/_user_list.html.haml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
%table.user_list.pure-table
%thead
%tr
%th icon
%th nick
%th name
%th member number
%th last update
%tbody
- members.each_with_index do |member, line|
%tr{ class: line.odd? ? 'pure-table-odd' : '' }
%td= gravatar_image_tag(member)
%td
= link_to member.nick, home_path(member.nick)
%td= member.name
%td= member.member_number
%td= member.updated_at

0 comments on commit e815b31

Please sign in to comment.