<%= form_for @changeset, @action, [multipart: true], fn f -> %> <%= if @changeset.action do %>

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

<% end %>
<%= label f, :audio_path, class: "control-label" %> <%= file_input f, :audio_path, class: "form-control" %> <%= error_tag f, :audio_path %>
<%= label f, :audio_name, class: "control-label" %> <%= text_input f, :audio_name, class: "form-control" %> <%= error_tag f, :audio_name %>
<%= label f, :audio_duration, class: "control-label" %> <%= text_input f, :audio_duration, class: "form-control" %> <%= error_tag f, :audio_duration %>
<%= submit "Submit", class: "btn btn-primary" %>
<% end %>