0

Is there any way to repeat same text block in template X times? For example, I need to generate template with hosts names and a block of text.

Host1
A lot of text
.
.
HostX
A lot of text
Igor Zilberman
  • 1,048
  • 1
  • 11
  • 16

1 Answers1

2

Use an each loop in your template:

<%- @hosts.each_with_index do |host, n| -%>
Host<%= n %>
A lot of text involving <%= host %>
etc
etc
<%- end -%>

You can use any normal Ruby flow control stuffs in Erb templates.

coderanger
  • 52,400
  • 4
  • 52
  • 75