1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<%= 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 %>
|