Sha256: 5a595756e296de12ae94be553020e1014390543d1f43a16f5aa175cb60ba6b3a

Contents?: true

Size: 839 Bytes

Versions: 17

Compression:

Stored size: 839 Bytes

Contents

<% application_name = params[:application_name] %>

<h1>Apple Push Service Notifications scheduled for <%= application_name %></h1>

<p class='sub'>Showing <%= start = params[:start].to_i %> to <%= start + 20 %> of <b><%=size = resque.aps_notification_count_for_application(application_name)%></b> notifications</p>

<table class='jobs'>
  <tr>
    <th>Payload</th>
  </tr>
  <% notifications = resque.aps_notifications_for_application(application_name, start, 20) %>
  <% notifications.each do |notification| %>
    <tr>
      <td class='args'><%=h notification.to_s %></td>
    </tr>
  <% end %>
  <% if notifications.empty? %>
    <tr>
      <td class='no-data' colspan='2'>There are no pending notifications scheduled for this application.</td>
    </tr>
  <% end %>
</table>

<%= partial :next_more, :start => start, :size => size %>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
resque-aps-0.9.17 lib/resque/plugins/aps/server/views/notifications.erb
resque-aps-0.9.15 lib/resque/plugins/aps/server/views/notifications.erb
resque-aps-0.9.14 lib/resque/plugins/aps/server/views/notifications.erb
resque-aps-0.9.13 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.12 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.11 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.10 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.9 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.8 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.7 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.6 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.5 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.4 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.3 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.2 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.1 lib/resque_aps/server/views/notifications.erb
resque-aps-0.9.0 lib/resque_aps/server/views/notifications.erb