Page MenuHomeGRNET

search.html.erb
No OneTemporary

File Metadata

Created
Wed, Nov 19, 1:20 PM

search.html.erb

<table class="table table-striped table-hover">
<thead>
<tr>
<th colspan="6">Records</th>
</tr>
</thead>
<tbody>
<% @records.each do |record| %>
<tr id="record-<%= record.id %>" class="<%= record.disabled? ? 'warning' : '' %>">
<td><%= link_to record.name, domain_path(record.domain, anchor: "hl-record-#{record.id}") %></td>
<td><%= record.ttl %></td>
<td>IN</td>
<td><%= record.type %></td>
<td><%= record.supports_prio? ? record.prio : '' %></td>
<td><%= record.content %></td>
<% if record.classless_delegation? %>
<td/>
<td/>
<td><%= link_to_destroy [record.domain, record], method: :delete, data: { confirm: 'Are you sure?' } %></td>
<% elsif can_edit?(record) %>
<td>
<% if record.disabled? %>
<%= link_to_enable enable_domain_record_path(record.domain, record), method: :put %>
<% else %>
<%= link_to_disable disable_domain_record_path(record.domain, record), method: :put %>
<% end %>
</td>
<td><%= link_to_edit edit_domain_record_path(record.domain, record) %></td>
<td><%= link_to_destroy [record.domain, record], method: :delete, data: { confirm: 'Are you sure?' } %></td>
<% else %>
<td/>
<td/>
<td/>
<% end %>
</tr>
<% end %>
</tbody>
</table>

Event Timeline