Sha256: b15fc7ddf2a36ac8a581a4c2079ebf21228e470e875833074f1bafe7f2882988

Contents?: true

Size: 1 KB

Versions: 22

Compression:

Stored size: 1 KB

Contents

<%- set_title 'Sites' -%>

<table class="standard">
  <%- if @sites.blank? -%>
    <tr>
      <th colspan="5"><em>No sites have been created yet.</em></th>
    </tr>
  <%- else -%>
      <tr>
        <th><%= sort_link('sites', 'domain', params) -%></th>
        <th><%= sort_link('sites', 'name', params) -%></th>
        <th><%= sort_link('sites', 'state', params) -%></th>
        <th><%= sort_link('sites', 'redirect_to', params) -%></th>
        <th> </th>
      </tr>

    <%- @sites.each do |site| -%>
      <tr class="<%= cycle('odd', 'even') -%>">
        <td><%= link_to site.domain, admin_site_path(site) -%></td>
        <td><%= site.name -%></td>
        <td><%= site.state -%></td>
        <td><%= site.redirect_to -%></td>
        <td class="crud_links"><%= admin_crud_links(site, [:show, :edit, :destroy]) -%></td>
      </tr>
    <%- end -%>
  <%- end -%>
  <tr>
    <td class="link_block" colspan="5">
      <%= link_to 'New Site', new_admin_site_path, :class => 'link_button' -%>
    </td>
  </tr>
</table>

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
site_logic-1.9.13 app/views/admin/sites/index.html.erb
site_logic-1.9.12 app/views/admin/sites/index.html.erb
site_logic-1.9.11 app/views/admin/sites/index.html.erb
site_logic-1.9.10 app/views/admin/sites/index.html.erb
site_logic-1.9.9 app/views/admin/sites/index.html.erb
site_logic-1.9.8 app/views/admin/sites/index.html.erb
site_logic-1.9.7 app/views/admin/sites/index.html.erb
site_logic-1.9.6 app/views/admin/sites/index.html.erb
site_logic-1.9.5 app/views/admin/sites/index.html.erb
site_logic-1.9.4 app/views/admin/sites/index.html.erb
site_logic-1.9.3 app/views/admin/sites/index.html.erb
site_logic-1.9.2 app/views/admin/sites/index.html.erb
site_logic-1.9.1 app/views/admin/sites/index.html.erb
site_logic-1.9.0 app/views/admin/sites/index.html.erb
site_logic-1.8.0 app/views/admin/sites/index.html.erb
site_logic-1.7.1 app/views/admin/sites/index.html.erb
site_logic-1.7.0 app/views/admin/sites/index.html.erb
site_logic-1.6.10 app/views/admin/sites/index.html.erb
site_logic-1.6.9 app/views/admin/sites/index.html.erb
site_logic-1.6.8 app/views/admin/sites/index.html.erb