Project

General

Profile

Download (811 Bytes) Statistics
| Branch: | Tag: | Revision:
c2ba4ed3 Ohad Levy
<% title "Domains" %>

05ab4c16 Ohad Levy
<% title_actions display_link_if_authorized("New Domain", hash_for_new_domain_path), help_path %>
cdf02336 Ohad Levy
82e47ae0 Amos Benari
<table class="table table-bordered table-striped">
c2ba4ed3 Ohad Levy
<tr>
8104eced Ohad Levy
<th><%= sort :name %></th>
92971ae3 Ohad Levy
<th>Hosts</th>
82e47ae0 Amos Benari
<th></th>
c2ba4ed3 Ohad Levy
</tr>
<% for domain in @domains %>
<tr class="<%= cycle("even", "odd") -%>">
1efdb38a Ohad Levy
<td><%= link_to_if_authorized h(domain.fullname.empty? ? domain.name : domain.fullname), hash_for_edit_domain_path(:id => domain.name)%></td>
05ab4c16 Ohad Levy
<td><%= link_to_if domain.hosts.any?, domain.hosts.size, hosts_path(:search => "domain = #{domain}") %>
82e47ae0 Amos Benari
<td><%= display_delete_if_authorized hash_for_domain_path(:id => domain), :confirm => "Delete #{domain.name}?" %></td>
c2ba4ed3 Ohad Levy
</tr>
<% end %>
</table>
d995ecb4 Paul Kelly
<%= page_entries_info @domains %>
<%= will_paginate @domains %>