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>&nbsp;</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

Version Path
udongo-1.0.3 app/views/backend/email_templates/index.html.erb
udongo-1.0.2 app/views/backend/email_templates/index.html.erb
udongo-1.0.1 app/views/backend/email_templates/index.html.erb
udongo-1.0.0 app/views/backend/email_templates/index.html.erb
udongo-0.1.0 app/views/backend/email_templates/index.html.erb