<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, class: 'btn btn-primary' %> </div> </div>