summaryrefslogtreecommitdiff
path: root/app/views/nodes/index.html.erb
blob: 7ab5679eb03f8a9d6c02439c35373cb9fdf03821 (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
38
39
40
41
<h1><%= t(".title") %></h1>

<div>
  <%= link_to new_node_path, class: 'action_button' do %>
    <%= icon("plus", library: "tabler", "aria-hidden": true) %> <%= t(".create_node") %>
  <% end %>
  <span class="field_hint"><%= t(".create_hint") %></span>
</div>

<%= will_paginate @nodes %>
  <table class="node_table">
    <tr class="header">
      <th class="node_id"><%= t("admin.columns.id") %></th>
      <th class="title"><%= t("admin.columns.title") %></th>
      <th class="actions"><%= t("admin.columns.actions") %></th>
      <th class="editor"><%= t("admin.columns.locked_by") %></th>
      <th class="revision"><%= t("admin.columns.rev") %></th>
    </tr>
    <% @nodes.each do |node| %>
    <tr class="<%= cycle("even", "odd") %>">
      <td class="node_id"><%= node.id %></td>
      <td class="title">
        <h4><%= link_to title_for_node(node), node_path(node) %></h4>
        <p><%= link_to_path(node.unique_name, node.unique_name) %></p>
      </td>
      <td class="actions">
        <%= link_to 'show',      node_path(node) %>
        <%= link_to 'edit',      edit_node_path(node) %>
        <%= link_to 'revisions', node_revisions_path(node) %>
      </td>
      <td>
        <%= node.lock_owner.login if node.lock_owner %>
      </td>
      <td>
        <%= node.draft ? node.draft.revision : (node.head ? node.head.revision : "EMPTY") %>
      </td>
    </tr>
    <% end %>
  </table>
<%= will_paginate @nodes %>