obdev/app/views/forms/index.html.erb

39 lines
1.0 KiB
Plaintext
Raw Normal View History

<div class="container mt-5">
<h1 class="mb-4 text-center">Forms</h1>
<div class="text-center mt-3">
<%= link_to 'New Form', new_form_path, class: 'btn btn-dark mb-3' %>
</div>
<table class="table">
<thead>
<tr>
<th>Form Name</th>
<th>Required/Optional</th>
<th>Program</th>
<th>Who/Role</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<% @forms.each do |form| %>
<tr>
<td><%= form.name %></td>
<td><%= form.required ? 'Required' : 'Optional' %></td>
<td><%= form.program %></td>
<td><%= form.form_roles.map(&:name).join(", ") %></td>
<td>
<%= link_to edit_form_path(form), class: 'btn btn-info btn-sm' do %>
<i class="bi bi-pencil-fill" style="color: white;"></i>
<% end %>
<%= link_to form, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger btn-sm' do %>
<i class="bi bi-trash-fill"></i>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>