Sha256: 6fef8d3675404e38fd3e53c504a394190079c5d093d30a4d3259d076d9574e21

Contents?: true

Size: 1.54 KB

Versions: 100

Compression:

Stored size: 1.54 KB

Contents

<% colspan = multi_site? ? 5 : 4 %>
<div class="widget">
  <table class="list">
    <tr>
      <th colspan="<%= colspan %>"><%= Alchemy.t('Currently locked pages') %></th>
    </tr>
  <% if @all_locked_pages.blank? %>
    <tr>
      <td colspan="<%= colspan %>"><%= Alchemy.t('no pages') %></td>
    </tr>
  <% else %>
    <% @all_locked_pages.each do |page| %>
    <tr class="<%= cycle('even', 'odd', name: 'locked_pages') %>">
      <td>
        <% if current_alchemy_user.id == page.locked_by %>
        <%= link_to(page.name, alchemy.edit_admin_page_path(page)) %>
        <% else %>
        <%= page.name %>
        <% end %>
      </td>
      <% if multi_site? %>
      <td>
        <small><%= page.site_name %></small>
      </td>
      <% end %>
      <td>
        <% if page.site_languages.many? %>
        <small><%= page.language.code.upcase %></small>
        <% end %>
      </td>
      <td>
        <% if current_alchemy_user.id == page.locked_by %>
        <small><%= Alchemy.t(:me) %></small>
        <% else %>
        <small><%= page.locker_name %></small>
        <% end %>
      </td>
      <td>
        <% if current_alchemy_user.id == page.locked_by %>
        <%= form_tag(alchemy.unlock_admin_page_path(page, :redirect_to => alchemy.admin_dashboard_url)) do %>
          <button class="icon_button small" title="<%= Alchemy.t(:explain_unlocking) %>">
            <%= render_icon(:times, size: 'xs') %>
          </button>
        <% end %>
        <% end %>
      </td>
    </tr>
    <% end %>
  <% end %>
  </table>
</div>
<% reset_cycle('locked_pages') %>

Version data entries

100 entries across 100 versions & 1 rubygems

Version Path
alchemy_cms-5.3.8 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.7 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.8 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.6 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.7 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.6 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.5 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.4 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.3 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.5 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.0 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.4 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.0.pre.rc7 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.3 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-5.3.0 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-6.0.0.pre.rc6 app/views/alchemy/admin/dashboard/_locked_pages.html.erb