Commit 8021a1d5c6b70f83cb68df679f1f8176aafd68fd
1 parent
a87bef10
Exists in
master
and in
28 other branches
ActionItem16: adding missing template
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@875 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
21 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,21 @@ | @@ -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 %> |