<%= t('CurrentMessagesInQueue', :queue => @name) %>
<%= erb :_paging, :locals => { :url => "#{root_path}queues/#{@name}" } %>
<%= t('Class') %> |
<%= t('Arguments') %> |
|
<% @messages.each_with_index do |msg, index| %>
<%= msg['class'] %> |
<% if msg['args'] and msg['args'].to_s.size > 100 %>
<%= h(msg['args'].inspect[0..100]) + "... " %>
<%= h(msg['args']) %>
<% else %>
<%= h(msg['args']) %>
<% end %>
|
|
<% end %>
<%= erb :_paging, :locals => { :url => "#{root_path}queues/#{@name}" } %>