Project

General

Profile

Download (320 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
(13-13/46)