Sha256: a0d353347d547737c4166f1173deaac0e4a20491bd204bd87b24e652495ea230

Contents?: true

Size: 1.66 KB

Versions: 19

Compression:

Stored size: 1.66 KB

Contents

<% items_within_page = 20 %>
<h1 id="delivery_reports_list"><%= items_within_page %> delivery_reports ordered by created_at</h1>

<%
offset = params[:offset].to_i
offset = 0 if offset < -0
%>

<p>
  <strong>List offset: <%= offset %>.</strong>
  Add
  <%= link_to("- #{items_within_page}",  list_delivery_reports_path(:offset => offset-items_within_page)) unless offset == 0 %>
  <%= link_to "+ #{items_within_page}",  list_delivery_reports_path(:offset => offset+items_within_page) %>
  to offset
</p>

<table style="margin-top: 20px; font-size: 10px;">
  <tr>
    <th>Id</th>
    <th>Created_at</th>
    <th>Msg id</th>
    <th>Gateway</th>
    <th>Status</th>
    <th>Status updated at</th>
    <th>Recipient</th>
    <th>Sender</th>
    <th>Sms Type</th>
    <th>Re Delivered</th>
    <th>Re Delivery Of</th>
    <th>&nbsp;O</th>
  </tr>

<% ActionSmser::DeliveryReport.order('created_at DESC').offset(offset).first(items_within_page).each do |delivery_report| %>
  <tr>
    <td style="white-space: nowrap;"><%= delivery_report.id %></td>
    <td style="white-space: nowrap;"><%= delivery_report.created_at %></td>
    <td><%= delivery_report.msg_id %></td>
    <td><%= delivery_report.gateway %></td>
    <td><%= delivery_report.status %></td>
    <td style="white-space: nowrap;"><%= delivery_report.status_updated_at %></td>
    <td><%= delivery_report.to %></td>
    <td><%= delivery_report.from %></td>
    <td><%= delivery_report.sms_type %></td>
    <td><%= delivery_report.re_delivered? %></td>
    <td><%= delivery_report.re_delivery_of.msg_id unless delivery_report.re_delivery_of.blank? %></td>
    <td title="<%= delivery_report.body %>">&nbsp;O</td>
  </tr>
<% end %>
</table>


Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
action_smser-3.4.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.4.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.3.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.2.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.1.2 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.1.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.1.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-3.0.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.2.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.1.2 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.1.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.1.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.0.2 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.0.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-2.0.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-1.2.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-1.2.0 app/views/action_smser/delivery_reports/list.html.erb
action_smser-1.1.1 app/views/action_smser/delivery_reports/list.html.erb
action_smser-1.1.0 app/views/action_smser/delivery_reports/list.html.erb