From 033d07a519bac03fdfd28ca15e09cc287e80fd14 Mon Sep 17 00:00:00 2001 From: neodarz Date: Tue, 24 Jan 2017 17:09:18 +0100 Subject: Initial commit with non-functional pieces of code about file upload --- web/templates/audio_file/form.html.eex | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 web/templates/audio_file/form.html.eex (limited to 'web/templates/audio_file/form.html.eex') diff --git a/web/templates/audio_file/form.html.eex b/web/templates/audio_file/form.html.eex new file mode 100644 index 0000000..2667f23 --- /dev/null +++ b/web/templates/audio_file/form.html.eex @@ -0,0 +1,29 @@ +<%= 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, :transcription_file_path, class: "control-label" %> + <%= text_input f, :transcription_file_path, class: "form-control" %> + <%= error_tag f, :transcription_file_path %> +
+ +
+ <%= 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 %> -- cgit v1.2.1