5
lib/eventos_web/templates/group_account/edit.html.eex
Normal file
5
lib/eventos_web/templates/group_account/edit.html.eex
Normal file
@@ -0,0 +1,5 @@
|
||||
<h2>Edit Group account</h2>
|
||||
|
||||
<%= render "form.html", Map.put(assigns, :action, group_account_path(@conn, :update, @group_account)) %>
|
||||
|
||||
<span><%= link "Back", to: group_account_path(@conn, :index) %></span>
|
||||
17
lib/eventos_web/templates/group_account/form.html.eex
Normal file
17
lib/eventos_web/templates/group_account/form.html.eex
Normal file
@@ -0,0 +1,17 @@
|
||||
<%= form_for @changeset, @action, fn f -> %>
|
||||
<%= if @changeset.action do %>
|
||||
<div class="alert alert-danger">
|
||||
<p>Oops, something went wrong! Please check the errors below.</p>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= label f, :role, class: "control-label" %>
|
||||
<%= number_input f, :role, class: "form-control" %>
|
||||
<%= error_tag f, :role %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit "Submit", class: "btn btn-primary" %>
|
||||
</div>
|
||||
<% end %>
|
||||
26
lib/eventos_web/templates/group_account/index.html.eex
Normal file
26
lib/eventos_web/templates/group_account/index.html.eex
Normal file
@@ -0,0 +1,26 @@
|
||||
<h2>Listing Group accounts</h2>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Role</th>
|
||||
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<%= for group_account <- @group_accounts do %>
|
||||
<tr>
|
||||
<td><%= group_account.role %></td>
|
||||
|
||||
<td class="text-right">
|
||||
<span><%= link "Show", to: group_account_path(@conn, :show, group_account), class: "btn btn-default btn-xs" %></span>
|
||||
<span><%= link "Edit", to: group_account_path(@conn, :edit, group_account), class: "btn btn-default btn-xs" %></span>
|
||||
<span><%= link "Delete", to: group_account_path(@conn, :delete, group_account), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<span><%= link "New Group account", to: group_account_path(@conn, :new) %></span>
|
||||
5
lib/eventos_web/templates/group_account/new.html.eex
Normal file
5
lib/eventos_web/templates/group_account/new.html.eex
Normal file
@@ -0,0 +1,5 @@
|
||||
<h2>New Group account</h2>
|
||||
|
||||
<%= render "form.html", Map.put(assigns, :action, group_account_path(@conn, :create)) %>
|
||||
|
||||
<span><%= link "Back", to: group_account_path(@conn, :index) %></span>
|
||||
13
lib/eventos_web/templates/group_account/show.html.eex
Normal file
13
lib/eventos_web/templates/group_account/show.html.eex
Normal file
@@ -0,0 +1,13 @@
|
||||
<h2>Show Group account</h2>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<strong>Role:</strong>
|
||||
<%= @group_account.role %>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<span><%= link "Edit", to: group_account_path(@conn, :edit, @group_account) %></span>
|
||||
<span><%= link "Back", to: group_account_path(@conn, :index) %></span>
|
||||
Reference in New Issue
Block a user