Commit 4a0db0ec4dad019d1412d847f84e77edfd51372e
1 parent
baea3972
Exists in
master
and in
22 other branches
ActionItem16: displaying information
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@861 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
48 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,48 @@ |
1 | +<h2><%= _("%s's validation") % @pending.name %></h2> | |
2 | + | |
3 | +<h3><%= _('Provided information') %></h3> | |
4 | + | |
5 | +<table> | |
6 | + <tr> | |
7 | + <th><%= _('Name') %></th> | |
8 | + <td><%= @pending.name %></td> | |
9 | + </tr> | |
10 | + <tr> | |
11 | + <th><%= _('Address') %></th> | |
12 | + <td><%= @pending.address %></td> | |
13 | + </tr> | |
14 | + <tr> | |
15 | + <th><%= _('Contact Phone') %></th> | |
16 | + <td><%= @pending.contact_phone %></td> | |
17 | + </tr> | |
18 | + <tr> | |
19 | + <th><%= _('Contact Person') %></th> | |
20 | + <td><%= @pending.contact_person %></td> | |
21 | + </tr> | |
22 | + <tr> | |
23 | + <th><%= _('Acronym') %></th> | |
24 | + <td><%= @pending.acronym %></td> | |
25 | + </tr> | |
26 | + <tr> | |
27 | + <th><%= _('Identifier') %></th> | |
28 | + <td><%= @pending.identifier %></td> | |
29 | + </tr> | |
30 | + <tr> | |
31 | + <th><%= _('Foundation Year') %></th> | |
32 | + <td><%= @pending.foundation_year %></td> | |
33 | + </tr> | |
34 | + <tr> | |
35 | + <th><%= _('Legal Year') %></th> | |
36 | + <td><%= @pending.legal_form %></td> | |
37 | + </tr> | |
38 | + <tr> | |
39 | + <th><%= _('Economic Activity') %></th> | |
40 | + <td><%= @pending.economic_activity %></td> | |
41 | + </tr> | |
42 | + <tr> | |
43 | + <th><%= _('Management Information') %></th> | |
44 | + <td><%= @pending.management_information %></td> | |
45 | + </tr> | |
46 | +</table> | |
47 | + | |
48 | +<h3><%= _('Final decision') %></h3> | ... | ... |