<%= form_for @changeset, @action, [multipart: true], 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, :audio_path, class: "control-label" %> <%= file_input f, :audio_path, class: "form-control" %> <%= error_tag f, :audio_path %> </div> <div class="form-group"> <%= label f, :audio_name, class: "control-label" %> <%= text_input f, :audio_name, class: "form-control" %> <%= error_tag f, :audio_name %> </div> <div class="form-group"> <%= label f, :audio_duration, class: "control-label" %> <%= text_input f, :audio_duration, class: "form-control" %> <%= error_tag f, :audio_duration %> </div> <div class="form-group"> <%= submit "Submit", class: "btn btn-primary" %> </div> <% end %>