diff options
author | neodarz <neodarz@neodarz.net> | 2017-02-17 10:24:14 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-02-17 10:24:14 +0100 |
commit | 92237133291873f841ccb1808ebc45318494dec0 (patch) | |
tree | 14c71976099488090cd273bac7e28b25c733a0e0 /web/templates | |
parent | 285cc8d28bc0cb42aed0a85b61b3b34a6b627264 (diff) | |
download | the_transcriber_backend-92237133291873f841ccb1808ebc45318494dec0.tar.xz the_transcriber_backend-92237133291873f841ccb1808ebc45318494dec0.zip |
Add id before the name of the file
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/audio_file/index.html.eex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/templates/audio_file/index.html.eex b/web/templates/audio_file/index.html.eex index 59b73a9..d598af4 100644 --- a/web/templates/audio_file/index.html.eex +++ b/web/templates/audio_file/index.html.eex @@ -13,7 +13,7 @@ <tbody> <%= for audio_file <- @audio_file do %> <tr> - <td><%= audio_file.audio_path %></td> + <td><%= audio_file.id %>_<%= audio_file.audio_path %></td> <td><%= audio_file.audio_name %></td> <td><%= audio_file.audio_duration %></td> |