Sha256: 9e911cf8c30fda6cf73ea80e86543300a340e61885a80e3918ebc9985c61037d

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

<div class="widget">
  <h2><%= _t('Currently locked pages') %>:</h2>
  <table>
  <% if @locked_pages.blank? %>
    <tr class="even">
      <td><%= _t('no pages') %></td>
    </tr>
  <% else %>
    <% @locked_pages.each do |page| %>
    <tr class="<%= cycle('even', 'odd', :name => 'locked_pages') %>">
      <% if current_user.id == page.locked_by %>
      <td>
        <%= link_to(page.name, alchemy.edit_admin_page_path(page)) %>
      </td>
      <td>
        <small><%= _t(:me) %></small>
      </td>
      <td>
        <%= form_tag(alchemy.unlock_admin_page_path(page, :redirect_to => alchemy.admin_dashboard_url)) do %>
          <button class="icon_button small" title="<%= _t('explain_unlocking') %>">
            <%= render_icon('close small') %>
          </button>
        <% end %>
      </td>
      <% else %>
      <td>
        <%= page.name %>
      </td>
      <td colspan="2">
        <small><%= page.locker_name %></small>
      </td>
    <% end %>
    </tr>
    <% end %>
  <% end %>
  </table>
</div>
<% reset_cycle('locked_pages') %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy_cms-2.5.3.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.3 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.2.2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.2.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.2 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.1 app/views/alchemy/admin/dashboard/_locked_pages.html.erb
alchemy_cms-2.5.0 app/views/alchemy/admin/dashboard/_locked_pages.html.erb