diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/dispositions/show.html.erb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/dispositions/show.html.erb b/app/views/dispositions/show.html.erb index b60f875..7056b3c 100644 --- a/app/views/dispositions/show.html.erb +++ b/app/views/dispositions/show.html.erb @@ -15,4 +15,23 @@ <%= link_to 'Edit', edit_disposition_path(@disposition) %> | <%= link_to 'Back', dispositions_path %> </div> + + <div class="small-12 columns"> + <table> + <thead> + <tr> + <th>Report</th> + <th width="210">Created At</th> + </tr> + </thead> + <tbody> + <% @disposition.file_reports.each do |report| %> + <tr> + <td><%= report.data %></td> + <td><%= report.created_at %></td> + </tr> + <% end %> + </tbody> + </table> + </div> </div> |
