34
lib/eventos_web/templates/group/index.html.eex
Normal file
34
lib/eventos_web/templates/group/index.html.eex
Normal file
@@ -0,0 +1,34 @@
|
||||
<h2>Listing Groups</h2>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Title</th>
|
||||
<th>Description</th>
|
||||
<th>Suspended</th>
|
||||
<th>Url</th>
|
||||
<th>Uri</th>
|
||||
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<%= for group <- @groups do %>
|
||||
<tr>
|
||||
<td><%= group.title %></td>
|
||||
<td><%= group.description %></td>
|
||||
<td><%= group.suspended %></td>
|
||||
<td><%= group.url %></td>
|
||||
<td><%= group.uri %></td>
|
||||
|
||||
<td class="text-right">
|
||||
<span><%= link "Show", to: group_path(@conn, :show, group), class: "btn btn-default btn-xs" %></span>
|
||||
<span><%= link "Edit", to: group_path(@conn, :edit, group), class: "btn btn-default btn-xs" %></span>
|
||||
<span><%= link "Delete", to: group_path(@conn, :delete, group), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<span><%= link "New Group", to: group_path(@conn, :new) %></span>
|
||||
Reference in New Issue
Block a user