Sha256: a429ecaa9f57ecf5bc528f3cb7554f30cad73c1709ab8ba487c28896177b4184
Contents?: true
Size: 684 Bytes
Versions: 25
Compression:
Stored size: 684 Bytes
Contents
<% javascript 'backend/sortable' %> <%= render 'backend/breadcrumbs' %> <% if @email_templates.any? %> <table class="table table-striped table-hover"> <thead class="thead-inverse"> <tr> <th><%= t 'b.description' %></th> <th> </th> </tr> </thead> <tbody> <% @email_templates.each do |s| %> <tr data-update-position="<%= update_position_backend_email_template_path(s) %>"> <td><%= s.description %></td> <td class="text-xs-right"> <%= link_to_edit [:backend, s] %> </td> </tr> <% end %> </tbody> </table> <% else %> <p><%= t 'b.msg.no_items' %></p> <% end %>
Version data entries
25 entries across 25 versions & 1 rubygems