Sha256: bba755561fe8ec780973c456299c639bb8f007ec4c4ebe69d8b65cf439ef8555
Contents?: true
Size: 745 Bytes
Versions: 15
Compression:
Stored size: 745 Bytes
Contents
#messages-index %h2 == #{simple_class_name( @destination ).capitalize}: #{link_to( object_path( @destination ), @destination.display_name)} :: Messages = paginate @destination.browsable_message_count %table %tr %th ID %th Delivery Count %th Properties %th Content - @destination.each(:offset => params[:offset] || 0, :limit => params[:limit] || 100) do |message| %tr %td = link_to( object_path( message ), message.jms_id ) %td = message.delivery_count %td = haml :'messages/properties', :locals => { :message => message } %td = truncate( message.content, 40 ) = paginate @destination.browsable_message_count
Version data entries
15 entries across 15 versions & 1 rubygems