Sha256: 6b460a053092872444234b9cd322944fd1a344c05dcb56d12c0c0a365ed9e77c

Contents?: true

Size: 1.3 KB

Versions: 19

Compression:

Stored size: 1.3 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]
    ) if @root_nodes.any? %>
  </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('alchemy/node', scope: :no_resource_found) %>
      <% end %>
      <%= render 'form', node: Alchemy::Node.new(
          site: Alchemy::Site.current,
          language: Alchemy::Language.current
        ),
        button_label: Alchemy.t(:create) %>
    </div>
  <% end %>
</div>

<script type="module">
  import NodeTree from "alchemy_admin/node_tree"

  NodeTree()
</script>

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
alchemy_cms-7.0.16 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.15 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.14 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.13 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.12 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.11 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.10 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.9 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.8 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.7 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.6 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.5 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.4 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.3 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.2 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.1 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.0 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.0.pre.rc1 app/views/alchemy/admin/nodes/index.html.erb
alchemy_cms-7.0.0.pre.c app/views/alchemy/admin/nodes/index.html.erb