aboutsummaryrefslogtreecommitdiff
path: root/web/templates/audio_file/form.html.eex
blob: 2667f23ae1ffcd83ee440a9b5dffaa11f6697b07 (plain)
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, :transcription_file_path, class: "control-label" %>
    <%= text_input f, :transcription_file_path, class: "form-control" %>
    <%= error_tag f, :transcription_file_path %>
  </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 %>