41
lib/eventos_web/templates/group/form.html.eex
Normal file
41
lib/eventos_web/templates/group/form.html.eex
Normal file
@@ -0,0 +1,41 @@
|
||||
<%= 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, :title, class: "control-label" %>
|
||||
<%= text_input f, :title, class: "form-control" %>
|
||||
<%= error_tag f, :title %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= label f, :description, class: "control-label" %>
|
||||
<%= text_input f, :description, class: "form-control" %>
|
||||
<%= error_tag f, :description %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= label f, :suspended, class: "control-label" %>
|
||||
<%= checkbox f, :suspended, class: "checkbox" %>
|
||||
<%= error_tag f, :suspended %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= label f, :url, class: "control-label" %>
|
||||
<%= text_input f, :url, class: "form-control" %>
|
||||
<%= error_tag f, :url %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= label f, :uri, class: "control-label" %>
|
||||
<%= text_input f, :uri, class: "form-control" %>
|
||||
<%= error_tag f, :uri %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit "Submit", class: "btn btn-primary" %>
|
||||
</div>
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user