list_processed.html.erb
626 Bytes
<h2><%= _("Processed enterprise validations") %></h2>
<%= link_to _("Back"), :action => 'index' %>
<% for processed in @processed_validations %>
  <h3><%= processed.name %> (<%=status(processed)%>)</h3>
  <ul>
    <li>
      <strong><%= _('Address') %>:</strong>
      <%= processed.address %>
    </li>
    <li>
      <strong><%= _('Contact Phone') %>:</strong>
      <%= processed.contact_phone %>
    </li>
    <li>
      <strong><%= _('Contact Person') %>:</strong>
      <%= processed.contact_person %>
    </li>
  </ul>
  <%= link_to _("See details"), :action => 'view_processed', :id => processed.code %>
<% end %>