Sha256: 310f42590f1e9269ef07af3b6e7926134807c719be996fbca96ec5be21b84247
Contents?: true
Size: 970 Bytes
Versions: 4
Compression:
Stored size: 970 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, class: 'btn btn-primary' %> </div> </div>
Version data entries
4 entries across 2 versions & 1 rubygems