Browse Source

Case insensitive wokshop sorting

development
Godwin 9 years ago
parent
commit
9e9054ca97
  1. 2
      app/views/application/home.html.haml

2
app/views/application/home.html.haml

@ -12,7 +12,7 @@
%h3=_'articles.workshops.headings.Proposed_Workshops'
%p=_'articles.workshops.paragraphs.Proposed_Workshops', "Would you like to facilitate your own workshop? Simply register and visit the workshops page. If you have already registered you can access the page by restarting the registration process."
%ul.workshop-list
- @conference.workshops.sort_by{|w| w.title}.each do |w|
- @conference.workshops.sort_by{ |w| w.title.downcase }.each do |w|
%li
%h4=w.title
.workshop-interest

Loading…
Cancel
Save