blob: aad60b595ef12fbf0dec4cad77335b5376e8c5ca (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<p id="notice"><%= notice %></p>
<p>
<b>User name:</b>
<%= @row.user_name %>
</p>
<p>
<b>Last name:</b>
<%= @row.last_name %>
</p>
<p>
<b>Middle name:</b>
<%= @row.middle_name %>
</p>
<p>
<b>First name:</b>
<%= @row.first_name %>
</p>
<p>
<b>Office phone number:</b>
<%= @row.office_phone_number %>
</p>
<p>
<b>Internal extension:</b>
<%= @row.internal_extension %>
</p>
<p>
<b>Mobile phone number:</b>
<%= @row.mobile_phone_number %>
</p>
<p>
<b>Fax phone number:</b>
<%= @row.fax_phone_number %>
</p>
<p>
<b>Email:</b>
<%= @row.email %>
</p>
<p>
<b>Pin:</b>
<%= @row.pin %>
</p>
<p>
<b>Photo file name:</b>
<%= @row.photo_file_name %>
</p>
|