Sha256: 572fc54629e81e898dcd125fc9f3fd4ec1f3c14c1c38475c52c33b28159eae9f

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

<%= simple_form_for @menu, remote: true do |f| %>
  <%= hidden_field_tag "menu[ancestry]", nil, class: 'js-menu-ancestry' %>
  <header class='header-main'>
    <div class="header-gutter">
      <%= link_to_back menus_path %>
    </div>
    <div class="header-title">
      <h1><%= icon_tag 'link' %> <%= @menu.name %></h1>
    </div>
    <div class="header-actions">
      <%= button_to_save %>
    </div>
  </header>

  <section class="body-main">
    <fieldset>
      <div class="fieldset-help">
        <legend>Links</legend>
        <p class='hint'>
          <%= link_to "#{icon_tag 'plus'} Add new".html_safe, '#', class: 'btn btn-primary js-add-link' %>
        </p>
      </div>
      <div class="fieldset-fields control-group">
        <ol class="links js-nested-sortable" data-menu-id='<%= @menu.id %>'>
          <% if @links and @links.any? %>
            <% @links.each do |link| %>
              <%= link_portlet_tag(link) %>
            <% end -%>
          <% else %>
            <p class='blank-state'>There are currently no navigation links. <%= link_to 'Create a new one', '#', class: 'js-add-link' %></p>
          <% end %>
        </ol>
      </div>
    </fieldset>

  </section>
<% end -%>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
georgia-0.8.0 app/views/georgia/menus/edit.html.erb
georgia-0.7.8 app/views/georgia/menus/edit.html.erb
georgia-0.7.7 app/views/georgia/menus/edit.html.erb
georgia-0.7.6 app/views/georgia/menus/edit.html.erb
georgia-0.7.5 app/views/georgia/menus/edit.html.erb
georgia-0.7.4 app/views/georgia/menus/edit.html.erb
georgia-0.7.3 app/views/georgia/menus/edit.html.erb
georgia-0.7.2 app/views/georgia/menus/edit.html.erb
georgia-0.7.1 app/views/georgia/menus/edit.html.erb
georgia-0.7.0 app/views/georgia/menus/edit.html.erb