Sha256: 3985767a7573fcb1e37876dba991767a8cade8ab61be062d93be6502391bd13a

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

<h1>Forms</h1>

<ul class="choices">

  <li><%= link_to 'New Form', new_noodall_admin_form_path, :class => 'button', :title => "Add new" %></li>

</ul>

<div id="content-table">
 <table border="0" cellspacing="0" cellpadding="0" class="content">
  <thead>
    <tr>
      <th>Title</th>
      <th>Email</th>
      <th width="120">Responses</th>
      <th width="45">Delete</th>
    </tr>
  </thead>
  <tbody>
<% @forms.each do |form| %>
    <tr id="form-<%= form.id %>" class="<%=cycle('odd', 'even')%>">
      <td class="edit"><%= link_to h(form.title), noodall_admin_form_path(form), :class => 'edit', :title => "Edit #{form.title}" %></td>
      <td><%= form.email %></td>
      <td class="child">
        <%= link_to pluralize(form.responses.size, "Response"), noodall_admin_form_form_responses_path(form), :title => "View responses for #{h(form.title)}", :class => 'child-no' %> <%= link_to 'Download Responses', noodall_admin_form_form_responses_path(form, :csv), :class => 'download', :title => 'Download the responses for this form in CSV format' %></td>
      <td><%= link_to 'Delete', noodall_admin_form_path(form), :confirm => 'Are you sure?', :method => :delete, :class => 'delete', :title => 'Delete this form' %></td>
    </tr>
<% end %>
  </tbody>
  <tfoot>
    <tr>
      <th>Title</th>
      <th>Email</th>
      <th width="100">Responses</th>
      <th width="45">Delete</th>
    </tr>
  </tfoot>
</table>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
noodall-form-builder-0.2.0 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.1.3 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.1.2 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.1.1 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.1.0 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.13 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.11 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.10 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.9 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.8 app/views/noodall/admin/forms/index.html.erb
noodall-form-builder-0.0.6 app/views/noodall/admin/forms/index.html.erb