Project

General

Profile

Download (314 Bytes) Statistics
| Branch: | Tag: | Revision:
module ConfigTemplatesHelper
def combination template
template.template_combinations.map do |comb|
str = []
str << (comb.hostgroup_id.nil? ? "None" : comb.hostgroup.to_s)
str << (comb.environment_id.nil? ? "None" : comb.environment.to_s)
str.join(" / ")
end.to_sentence
end
end
(11-11/43)