Improve readability

This commit is contained in:
Artur Beljajev 2019-10-12 17:47:00 +03:00
parent 7fbf21daf8
commit 59a6f9d21e
5 changed files with 8 additions and 8 deletions

View file

@ -15,12 +15,12 @@
</thead>
<tbody>
<% @domains.each do |x| %>
<% @domains.each do |domain| %>
<tr>
<td><%= x.name %></td>
<td><%= x.registrant %></td>
<td><%= l(x.valid_to, format: :short) %></td>
<td><%= x.registrar %></td>
<td><%= domain.name %></td>
<td><%= domain.registrant %></td>
<td><%= l(domain.valid_to, format: :short) %></td>
<td><%= domain.registrar %></td>
</tr>
<% end %>
</tbody>