diff options
Diffstat (limited to 'web/templates/audio_file')
-rw-r--r-- | web/templates/audio_file/form.html.eex | 6 | ||||
-rw-r--r-- | web/templates/audio_file/index.html.eex | 2 | ||||
-rw-r--r-- | web/templates/audio_file/show.html.eex | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/web/templates/audio_file/form.html.eex b/web/templates/audio_file/form.html.eex index 2667f23..32d6b5c 100644 --- a/web/templates/audio_file/form.html.eex +++ b/web/templates/audio_file/form.html.eex @@ -12,9 +12,9 @@ </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 %> + <%= 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"> diff --git a/web/templates/audio_file/index.html.eex b/web/templates/audio_file/index.html.eex index 445178d..59b73a9 100644 --- a/web/templates/audio_file/index.html.eex +++ b/web/templates/audio_file/index.html.eex @@ -14,7 +14,7 @@ <%= for audio_file <- @audio_file do %> <tr> <td><%= audio_file.audio_path %></td> - <td><%= audio_file.transcription_file_path %></td> + <td><%= audio_file.audio_name %></td> <td><%= audio_file.audio_duration %></td> <td class="text-right"> diff --git a/web/templates/audio_file/show.html.eex b/web/templates/audio_file/show.html.eex index 2cc05d4..ea841f0 100644 --- a/web/templates/audio_file/show.html.eex +++ b/web/templates/audio_file/show.html.eex @@ -9,7 +9,7 @@ <li> <strong>Transcription file path:</strong> - <%= @audio_file.transcription_file_path %> + <%= @audio_file.audio_name %> </li> <li> |