123456789101112131415161718 |
- module AgentHelper
- def agent_show_view(agent)
- name = agent.short_type.underscore
- if File.exists?(Rails.root.join("app", "views", "agents", "agent_views", name, "_show.html.erb"))
- File.join("agents", "agent_views", name, "show")
- end
- end
- def scenario_links(agent)
- agent.scenarios.map { |scenario|
- link_to(scenario.name, scenario, class: "label label-info")
- }.join(" ").html_safe
- end
- def agent_show_class(agent)
- agent.short_type.underscore.dasherize
- end
- end
|