Sha256: 8a04522671915dc44e86d4060fbd965e8629294f7cea2a69626b4cbbc0e22a05

Contents?: true

Size: 774 Bytes

Versions: 5

Compression:

Stored size: 774 Bytes

Contents

<%- content_for(:javascript_includes) do -%>
  <%= javascript_include_tag "alchemy_crm/scripts.js" %>
<%- end -%>

<%- content_for(:stylesheets) do -%>
  <%= stylesheet_link_tag('alchemy_crm/styles') %>
<%- end -%>

<% toolbar(
  :buttons => [
    {
      :icon => :close,
      :label => t(:cancel),
      :url => alchemy_crm.admin_contacts_path,
      :title => t(:cancel),
      :overlay => false,
      :if_permitted_to => [:index, :alchemy_crm_admin_contacts]
    }
  ],
  :search => false
) -%>

<% if @errors -%>

<div id="errors"><%= raw @errors %></div>

<% end -%>

<table>
<% @contacts.each do |contact| -%>
  <tr>
    <td><%= contact.fullname %></td>
    <td><%= contact.email %></td>
    <td><%= contact.errors.full_messages %></td>
  </tr>
<% end -%>
</table>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alchemy_crm-2.0.5 app/views/alchemy_crm/admin/mailings/import_result.html.erb
alchemy_crm-2.0.4.1 app/views/alchemy_crm/admin/mailings/import_result.html.erb
alchemy_crm-2.1.0a app/views/alchemy_crm/admin/mailings/import_result.html.erb
alchemy_crm-2.0.3 app/views/alchemy_crm/admin/mailings/import_result.html.erb
alchemy_crm-2.0.2 app/views/alchemy_crm/admin/mailings/import_result.html.erb