1234567891011121314151617181920 |
- module ApplicationHelper
- def nav_link(name, path, options = {})
- (<<-HTML).html_safe
- <li class='
-
- </li>
- HTML
- end
- def working(agent)
- if agent.disabled?
- '<span class="label label-warning">Disabled</span>'.html_safe
- elsif agent.working?
- '<span class="label label-success">Yes</span>'.html_safe
- else
- link_to '<span class="label btn-danger">No</span>'.html_safe, agent_path(agent, :tab => (agent.recent_error_logs? ? 'logs' : 'details'))
- end
- end
- end
|