forked from potsda.mn/mobilizon
90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
42 lines
1.2 KiB
Elixir
42 lines
1.2 KiB
Elixir
<%= 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 %>
|