_details.html.erb
955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<table>
<tr>
<th><%= _('Name') %></th>
<td><%= request.name %></td>
</tr>
<tr>
<th><%= _('Address') %></th>
<td><%= request.address %></td>
</tr>
<tr>
<th><%= _('Contact Phone') %></th>
<td><%= request.contact_phone %></td>
</tr>
<tr>
<th><%= _('Contact Person') %></th>
<td><%= request.contact_person %></td>
</tr>
<tr>
<th><%= _('Acronym') %></th>
<td><%= request.acronym %></td>
</tr>
<tr>
<th><%= _('Identifier') %></th>
<td><%= request.identifier %></td>
</tr>
<tr>
<th><%= _('Foundation Year') %></th>
<td><%= request.foundation_year %></td>
</tr>
<tr>
<th><%= _('Legal Form') %></th>
<td><%= request.legal_form %></td>
</tr>
<tr>
<th><%= _('Economic Activity') %></th>
<td><%= request.economic_activity %></td>
</tr>
<tr>
<th><%= _('Management Information') %></th>
<td><%= request.management_information %></td>
</tr>
</table>