Sha256: 8eed0a1e21cfbb9d05bafdaec4017f2b63c67ff5b10e4b1acf54aa020e7e40b6

Contents?: true

Size: 1.59 KB

Versions: 17

Compression:

Stored size: 1.59 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) || can?(:manage, Alchemy::Site.current) %>
        <%= 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(:close, size: '1x') %>
          </button>
        <% end %>
        <% end %>
      </td>
    </tr>
    <% end %>
  <% end %>
  </table>
</div>
<% reset_cycle('locked_pages') %>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
alchemy_cms-7.1.13 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.12 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.11 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.10 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.9 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.8 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.7 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.6 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.5 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.4 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.3 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.0 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.0.pre.rc1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.0.pre.b2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-7.1.0.pre.b1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb