Sha256: 9cfb220dd2fa43c0c4f3f239991f5d13521b91fe956a330d46e6288fe3081471

Contents?: true

Size: 1.67 KB

Versions: 25

Compression:

Stored size: 1.67 KB

Contents

<% javascript 'backend/sortable' %>
<%= render 'backend/breadcrumbs' %>

<% @navigations.each do |n| %>
  <div class="row">
    <div class="col-md-6">
      <h2><%= n.description %></h2>
    </div>
    <div class="col-md-6 text-xs-right">
      <%= link_to t('b.add'), new_backend_navigation_item_path(n), class: 'btn btn-primary btn-sm' %>
    </div>
  </div>

  <% if n.items.any? %>
    <table class="table table-striped table-hover">
      <thead class="thead-inverse">
        <tr>
          <th><%= t 'b.page' %></th>
          <th><%= t 'b.custom_title' %></th>
          <th><%= t 'b.custom_url' %></th>
          <th><%= t 'b.extra' %></th>
          <th>&nbsp;</th>
        </tr>
      </thead>

      <tbody>
        <% n.items.each do |i| %>
          <tr data-update-position="<%= update_position_backend_navigation_item_path(n, i) %>">
            <td>
              <%= i.page ? i.page.description : t('b.none') %>
            </td>
            <td><%= i.translation.label %></td>
            <td><%= i.translation.path %></td>
            <td><%= i.extra %></td>
            <td class="text-xs-right">
              <%= link_to icon(:pencil_square_o), edit_backend_navigation_item_path(n, i) %>
              <%= link_to icon(:trash), backend_navigation_item_path(n, i), method: :delete, data: { confirm: t('b.msg.confirm') }%>
            </td>
          </tr>
        <% end %>
      </tbody>
    </table>

  <% else %>
    <p><%= t 'b.msg.no_items' %></p>
  <% end %>
<% end %>

<% if @navigations.empty? %>
  <div class="card">
    <div class="card-header">
      <%= t 'b.navigation' %>
    </div>

    <div class="card-block">
      <%= t 'b.msg.no_items' %>
    </div>
  </div>
<% end %>

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
udongo-5.8.0 app/views/backend/navigations/index.html.erb
udongo-5.7.0 app/views/backend/navigations/index.html.erb
udongo-5.6.0 app/views/backend/navigations/index.html.erb
udongo-5.5.0 app/views/backend/navigations/index.html.erb
udongo-5.4.0 app/views/backend/navigations/index.html.erb
udongo-5.3.1 app/views/backend/navigations/index.html.erb
udongo-5.3.0 app/views/backend/navigations/index.html.erb
udongo-5.2.0 app/views/backend/navigations/index.html.erb
udongo-5.1.0 app/views/backend/navigations/index.html.erb
udongo-5.0.2 app/views/backend/navigations/index.html.erb
udongo-5.0.1 app/views/backend/navigations/index.html.erb
udongo-5.0.0 app/views/backend/navigations/index.html.erb
udongo-4.0.0 app/views/backend/navigations/index.html.erb
udongo-3.0.0 app/views/backend/navigations/index.html.erb
udongo-2.0.4 app/views/backend/navigations/index.html.erb
udongo-2.0.3 app/views/backend/navigations/index.html.erb
udongo-2.0.2 app/views/backend/navigations/index.html.erb
udongo-2.0.1 app/views/backend/navigations/index.html.erb
udongo-2.0.0 app/views/backend/navigations/index.html.erb
udongo-1.0.4 app/views/backend/navigations/index.html.erb