Sha256: 83aeff0e4a493b3d720e33d31e085971635b61b0663b0b9fbe03206df3033d64

Contents?: true

Size: 971 Bytes

Versions: 4

Compression:

Stored size: 971 Bytes

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 @deliveries %>
    </table>
  </div>
</div>
<%- end -%>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
alchemy_crm-2.0.5 app/views/alchemy_crm/admin/deliveries/index.html.erb
alchemy_crm-2.0.4.1 app/views/alchemy_crm/admin/deliveries/index.html.erb
alchemy_crm-2.0.3 app/views/alchemy_crm/admin/deliveries/index.html.erb
alchemy_crm-2.0.2 app/views/alchemy_crm/admin/deliveries/index.html.erb