Sha256: e81c817cb29a1bb7d018d45e9123e7fbb953aeaeb5a56274208f26460407e573

Contents?: true

Size: 951 Bytes

Versions: 1

Compression:

Stored size: 951 Bytes

Contents

<div class="row">
  <div class="col-md-12">
    <p id="notice"><%= notice %></p>
    
    <h1>Listing Translations</h1>
    
    <table class="table table-striped">
      <thead>
        <tr>
          <th>Locale</th>
          <th>Key</th>
          <th>Value</th>
          <th colspan="3"></th>
        </tr>
      </thead>
    
      <tbody>
        <% @translations.each do |translation| %>
          <tr>
            <td><%= translation.locale %></td>
            <td><%= translation.key %></td>
            <td><%= translation.value %></td>
            <td><%= link_to 'Show', translation %></td>
            <td><%= link_to 'Edit', edit_translation_path(translation) %></td>
            <td><%= link_to 'Destroy', translation, method: :delete, data: { confirm: 'Are you sure?' } %></td>
          </tr>
        <% end %>
      </tbody>
    </table>
    
    <br>
    
    <%= link_to 'New Translation', new_translation_path %>
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
champollion-0.1.5 app/views/champollion/translations/index.html.erb