initial commit

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2017-12-08 09:58:14 +01:00
commit 90ceb4f6fe
181 changed files with 8219 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<h2>Edit Group request</h2>
<%= render "form.html", Map.put(assigns, :action, group_request_path(@conn, :update, @group_request)) %>
<span><%= link "Back", to: group_request_path(@conn, :index) %></span>

View 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, :state, class: "control-label" %>
<%= number_input f, :state, class: "form-control" %>
<%= error_tag f, :state %>
</div>
<div class="form-group">
<%= submit "Submit", class: "btn btn-primary" %>
</div>
<% end %>

View File

@@ -0,0 +1,26 @@
<h2>Listing Group requests</h2>
<table class="table">
<thead>
<tr>
<th>State</th>
<th></th>
</tr>
</thead>
<tbody>
<%= for group_request <- @group_request do %>
<tr>
<td><%= group_request.state %></td>
<td class="text-right">
<span><%= link "Show", to: group_request_path(@conn, :show, group_request), class: "btn btn-default btn-xs" %></span>
<span><%= link "Edit", to: group_request_path(@conn, :edit, group_request), class: "btn btn-default btn-xs" %></span>
<span><%= link "Delete", to: group_request_path(@conn, :delete, group_request), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %></span>
</td>
</tr>
<% end %>
</tbody>
</table>
<span><%= link "New Group request", to: group_request_path(@conn, :new) %></span>

View File

@@ -0,0 +1,5 @@
<h2>New Group request</h2>
<%= render "form.html", Map.put(assigns, :action, group_request_path(@conn, :create)) %>
<span><%= link "Back", to: group_request_path(@conn, :index) %></span>

View File

@@ -0,0 +1,13 @@
<h2>Show Group request</h2>
<ul>
<li>
<strong>State:</strong>
<%= @group_request.state %>
</li>
</ul>
<span><%= link "Edit", to: group_request_path(@conn, :edit, @group_request) %></span>
<span><%= link "Back", to: group_request_path(@conn, :index) %></span>