main
1<div class="row">
2 <div class="small-12 columns">
3 <p id="notice"><%= notice %></p>
4
5 <p>
6 <strong>Fingerprint:</strong>
7 <%= @disposition.fingerprint %>
8 </p>
9
10 <p>
11 <strong>State:</strong>
12 <%= @disposition.state %>
13 </p>
14
15 <%= link_to 'Edit', edit_disposition_path(@disposition) %> |
16 <%= link_to 'Back', dispositions_path %>
17 </div>
18
19 <div class="small-12 columns">
20 <table>
21 <thead>
22 <tr>
23 <th>Report</th>
24 <th width="210">Created At</th>
25 </tr>
26 </thead>
27 <tbody>
28 <% @disposition.file_reports.each do |report| %>
29 <tr>
30 <td><%= report.data %></td>
31 <td><%= report.created_at %></td>
32 </tr>
33 <% end %>
34 </tbody>
35 </table>
36 </div>
37</div>