Commit 8021a1d5c6b70f83cb68df679f1f8176aafd68fd

Authored by AntonioTerceiro
1 parent a87bef10

ActionItem16: adding missing template



git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@875 3f533792-8f58-4932-b0fe-aaf55b0a4547
app/views/enterprise_validation/list_processed.rhtml 0 → 100644
... ... @@ -0,0 +1,21 @@
  1 +<h2><%= _("Pending enterprise validations") %></h2>
  2 +
  3 +<% for processed in @processed_validations %>
  4 + <h3><%= processed.name %></h3>
  5 + <ul>
  6 + <li>
  7 + <strong><%= _('Address') %>:</strong>
  8 + <%= processed.address %>
  9 + </li>
  10 + <li>
  11 + <strong><%= _('Contact Phone') %>:</strong>
  12 + <%= processed.contact_phone %>
  13 + </li>
  14 + <li>
  15 + <strong><%= _('Contact Person') %>:</strong>
  16 + <%= processed.contact_person %>
  17 + </li>
  18 + </ul>
  19 +
  20 + <%= link_to _("See details"), :action => 'view_processed', :id => processed.code %>
  21 +<% end %>
... ...