Sha256: f9b029d126aeee6881a11e71bfc3c75e9aa3cc04314d65406b633cfa85338a4a

Contents?: true

Size: 1.24 KB

Versions: 10

Compression:

Stored size: 1.24 KB

Contents

<% content_for(:title) do %>
  <%= Alchemy.t(:menus, scope: 'modules') %>
<% end %>

<% content_for(:toolbar) do %>
  <div class="toolbar_buttons">
    <%= render 'alchemy/admin/partials/site_select' %>
    <%= render 'alchemy/admin/partials/language_tree_select' %>
    <%= toolbar_button(
      icon: 'plus',
      label: Alchemy.t(:create_menu),
      url: alchemy.new_admin_node_path,
      hotkey: 'alt+n',
      dialog_options: {
        title: Alchemy.t(:create_menu),
        size: '450x120'
      },
      if_permitted_to: [:create, Alchemy::Node]
    ) %>
  </div>
<% end %>

<div id="archive_all">
  <h1 id="node_filter_result"></h1>
  <% if @root_nodes.any? %>
    <% @root_nodes.each do |root_node| %>
      <ul class="nodes_tree list">
        <%= render 'node', node: root_node %>
      </ul>
    <% end %>
  <% else %>
    <div class="panel no-resource-found">
      <%= render_message do %>
        <%= Alchemy.t(:no_resource_found) % { resource: Alchemy.t(:menu) } %>
      <% end %>
      <%= render 'form', node: Alchemy::Node.new(
          site: Alchemy::Site.current,
          language: Alchemy::Language.current
        ),
        button_label: Alchemy.t(:create) %>
    </div>
  <% end %>
</div>

<script>
  Alchemy.NodeTree.init()

</script>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
alchemy_cms-4.6.7 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.6 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.5 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.5.1 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.4 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.3 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.2 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.1 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.6.0 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-4.5.0 app/views/alchemy/admin/nodes/index.html.erb