Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div class="sectionheader rightcol_red">
  2. <h1>Specials</h1>
  3. <ul>
  4. <li><%= link_to 'View all specials', business_specials_url(@the_user.link_name) %></li>
  5. <li class="right">
  6. <% 0.upto(6) do |day| %>
  7. <% if @the_user.specials_by_day[day] %>
  8. <span<%= ' class="current"' if day == Date.today.wday %>><%= link_to_function Date::DAYNAMES[day].first(3), "showSpecials(this, #{day})" %></span>
  9. <% end %>
  10. <% end %>
  11. </li>
  12. </ul>
  13. </div>
Add Comment
Please, Sign In to add comment