Sha256: cff9e8c4e5f7c8e0e37677523bc143caf1fc5a6fadb34b12be361d3fde4d2f5f
Contents?: true
Size: 935 Bytes
Versions: 46
Compression:
Stored size: 935 Bytes
Contents
<%= render 'backend/breadcrumbs' %> <p class="text-right"> <%= link_to icon(:plus, t('b.add')), new_backend_search_synonym_path, class: 'btn btn-primary btn-sm' %> </p> <% if @search_synonyms.any? %> <table class="table table-striped table-hover"> <thead class="thead-inverse"> <tr> <th><%= t 'b.locale' %></th> <th><%= t 'b.search_term' %></th> <th><%= t 'b.synonyms' %></th> <th> </th> </tr> </thead> <tbody> <% @search_synonyms.each do |s| %> <tr> <td><%= s.locale %></td> <td><%= s.term %></td> <td><%= s.synonyms %></td> <td class="text-right"> <%= link_to_edit [:backend, s] %> <%= link_to_delete [:backend, s] %> </td> </tr> <% end %> </tbody> </table> <%= udongo_paginate @search_synonyms %> <% else %> <p><%= t 'b.msg.no_items' %></p> <% end %>
Version data entries
46 entries across 46 versions & 1 rubygems