Sha256: 2ffb44100c00d51314b6856908f593c3a411e247f17e6eb1997f206f8545e951

Contents?: true

Size: 1.31 KB

Versions: 13

Compression:

Stored size: 1.31 KB

Contents

<div class="bjond-registration">
  <p id="notice"><%= notice %></p>

  <div class="bjond-app-title">Listing Bjond Registrations</div>


  <div class="bjond-registration-list">
    <% if @bjond_registrations.count > 0 %>
      <table class="bjond-table">
        <thead>
          <tr class="bjond-table-row">
            <th>Server</th>
            <th>Encrypted Encryption Key</th>
            <th colspan="3"></th>
          </tr>
        </thead>

        <tbody>
          <% @bjond_registrations.each do |bjond_registration| %>
            <tr class="bjond-table-row">
              <td><%= bjond_registration.server %></td>
              <td><%= bjond_registration.encrypted_encryption_key %></td>
              <td><%= link_to 'Show', bjond_registration %></td>
              <td><%= link_to 'Edit', edit_bjond_registration_path(bjond_registration) %></td>
              <td><%= link_to 'Destroy', bjond_registration, method: :delete, data: { confirm: 'Are you sure?' } %></td>
            </tr>
          <% end %>
        </tbody>
      </table>
    <% else %>
      <div class="non-available">
        No registrations
      </div>
    <% end %>

    <div class="new-registration-link">
      <%= link_to 'New Bjond registration', new_bjond_registration_path %>
    </div>

  </div>

  <%= render 'shared/app_info.html' %>
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
bjond-api-0.3.9 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.6 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.5 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.4 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.3 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.2 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.1 app/views/bjond_registrations/index.html.erb
bjond-api-0.3.0 app/views/bjond_registrations/index.html.erb
bjond-api-0.2.6 app/views/bjond_registrations/index.html.erb
bjond-api-0.2.5 app/views/bjond_registrations/index.html.erb
bjond-api-0.2.4 app/views/bjond_registrations/index.html.erb
bjond-api-0.2.3 app/views/bjond_registrations/index.html.erb
bjond-api-0.2.2 app/views/bjond_registrations/index.html.erb