Sha256: 244b7326fe8dad9ab5b3189f0c4609221693a40e5ff61f61c4a8de2ef322eb66

Contents?: true

Size: 624 Bytes

Versions: 6

Compression:

Stored size: 624 Bytes

Contents

<%= render 'backend/breadcrumbs' %>

<% if @forms.any? %>
  <table class="table table-striped table-hover">
    <thead class="thead-inverse">
      <tr>
        <th><%= t 'b.description' %></th>
        <th>&nbsp;</th>
      </tr>
    </thead>

    <tbody>
      <% @forms.each do |f| %>
        <tr>
          <td><%= f.description %></td>
          <td class="text-xs-right">
            <%= link_to_edit [:backend, f] %>
            <%= link_to icon(:list), backend_form_submissions_path(f) %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>

<% else %>
  <p><%= t 'b.msg.no_items' %></p>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
udongo-2.0.4 app/views/backend/forms/index.html.erb
udongo-2.0.3 app/views/backend/forms/index.html.erb
udongo-2.0.2 app/views/backend/forms/index.html.erb
udongo-2.0.1 app/views/backend/forms/index.html.erb
udongo-2.0.0 app/views/backend/forms/index.html.erb
udongo-1.0.4 app/views/backend/forms/index.html.erb