<%= form_for @changeset, @action, fn f -> %> <%= if @changeset.action do %>

Oops, something went wrong! Please check the errors below.

<% end %>
<%= label f, :title, class: "control-label" %> <%= text_input f, :title, class: "form-control" %> <%= error_tag f, :title %>
<%= label f, :description, class: "control-label" %> <%= text_input f, :description, class: "form-control" %> <%= error_tag f, :description %>
<%= label f, :suspended, class: "control-label" %> <%= checkbox f, :suspended, class: "checkbox" %> <%= error_tag f, :suspended %>
<%= label f, :url, class: "control-label" %> <%= text_input f, :url, class: "form-control" %> <%= error_tag f, :url %>
<%= label f, :uri, class: "control-label" %> <%= text_input f, :uri, class: "form-control" %> <%= error_tag f, :uri %>
<%= submit "Submit", class: "btn btn-primary" %>
<% end %>