summaryrefslogtreecommitdiff
path: root/app/views/dispositions/show.html.erb
blob: 7056b3cfe9e2a7594746de27c33d8940050cf016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div class="row">
  <div class="small-12 columns">
    <p id="notice"><%= notice %></p>

    <p>
    <strong>Fingerprint:</strong>
    <%= @disposition.fingerprint %>
    </p>

    <p>
    <strong>State:</strong>
    <%= @disposition.state %>
    </p>

    <%= 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>