Sha256: ae42660cef49a89b9c28a55ec7aba3519220843aac69b05a4e098468e7956dfa

Contents?: true

Size: 739 Bytes

Versions: 3

Compression:

Stored size: 739 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Listing Translations</h1>

<table>
  <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 %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
champollion-0.1.2 app/views/champollion/translations/index.html.erb
champollion-0.1.1 app/views/champollion/translations/index.html.erb
champollion-0.1.0 app/views/champollion/translations/index.html.erb