Няма описание http://j1x-huginn.herokuapp.com

application_helper.rb 403B

123456789101112131415161718
  1. module ApplicationHelper
  2. def nav_link(name, path, options = {})
  3. (<<-HTML).html_safe
  4. <li class='#{(current_page?(path) ? "active" : "")}'>
  5. #{link_to name, path}
  6. </li>
  7. HTML
  8. end
  9. def working(agent)
  10. if agent.working?
  11. '<span class="label label-success">Yes</span>'.html_safe
  12. else
  13. '<span class="label label-warning">No</span>'.html_safe
  14. end
  15. end
  16. end