Sha256: c1aeab3929edbb02ba5e60bc6ac863f186ed0ce3616a19c5f6261b3fc4153562

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

<%- if @deliveries.blank? -%>
<div class="info with_margin">
  <%= render_icon('info') %>
  <%= alchemy_crm_t(:this_mailing_has_not_been_delivered_yet) %>
</div>
<%- else -%>
<div class="with_padding">
  <div class="info">
    <%= render_icon('info') %>
    <h1><%= alchemy_crm_t(:this_list_shows_all_deliveries) %></h1>
    <ol>
      <li><%= alchemy_crm_t(:you_can_open_statistics_for_delivered_mailings) %></li>
      <li><%= alchemy_crm_t(:not_yet_delivered_mailings_can_be_canceled) %></li>
    </ol>
  </div>
  <div id="deliveries">
    <table class="list">
      <tr>
        <th><%= alchemy_crm_t(:delivery_scheduled_at) %></th>
        <th class="right"><%= translate_model_attribute(:delivery, :recipients_count) %></th>
        <th class="center"><%= translate_model_attribute(:delivery, :delivered?) %></th>
        <th class="center"><%= alchemy_crm_t(:statistics) %></th>
      </tr>
      <%= render :partial => "alchemy_crm/admin/deliveries/delivery", :collection => @deliveries %>
    </table>
  </div>
</div>
<%- end -%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alchemy_crm-2.1.0a app/views/alchemy_crm/admin/deliveries/index.html.erb