summaryrefslogtreecommitdiff
path: root/app/views/admin/index.html.erb
blob: 00a5c09563dc8654bad70ed824dc14117e0af4bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div id="draft_list">
  <h2>Drafts</h2>
  <table>
    <tr>
      <th>ID</th>
      <th>Title</th>
      <th>Path</th>
      <th>Locked by</th>
    </tr>
    <% @drafts.each do |draft| %>
    <tr>
      <td><%= draft.id %></td>
      <td><%= draft.title %></td>
      <td><%= draft.node.unique_name %></td>
      <td><%= draft.user.login rescue "" %></td>
      <td><%= link_to 'Show', node_path(draft.node) %></td>
    </tr>
    <% end %>
  </table>
</div>