fixes from comments
This commit is contained in:
parent
d7c7d878f2
commit
5a1dae866a
7 changed files with 23 additions and 34 deletions
|
|
@ -10,10 +10,10 @@
|
|||
- recent_registrations.each_with_index do |registration, index|
|
||||
%tbody
|
||||
%tr
|
||||
%td #{index + 1}
|
||||
%td= link_to "#{registration.name}", admin_user_path(registration.user.id)
|
||||
%td= link_to "#{registration.conference.title}", admin_conference_path(registration.conference.short_title)
|
||||
%td #{registration.created_at.strftime('%m/%d/%Y')}
|
||||
%td= index + 1
|
||||
%td= link_to registration.name, admin_user_path(registration.user.id)
|
||||
%td= link_to registration.conference.title, admin_conference_path(registration.conference.short_title)
|
||||
%td= registration.created_at.strftime('%m/%d/%Y')
|
||||
- else
|
||||
%h5.text-warning.text-center
|
||||
No registrations!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue