forked from stmansour/phonebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.html
62 lines (57 loc) · 1.72 KB
/
class.html
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
57
58
59
60
61
62
{{define "title" }}
AIR Directory - Business Unit - {{.A.Name}}
{{ end }}
{{define "body style" }}
style='background-image: url("/{{index .Images "class"}}")'
{{ end }}
{{ define "other scripts"}}{{ end }}
{{ define "content" }}
<p> </p>
<table border="0" class="bd" id="personDetailText" cellpadding="3">
<tr>
<td width="50px"></td>
<td colspan="2"><span class="LastName">{{.A.Name}}</span></td>
<td width="50px"></td>
</tr>
<tr>
<td width="50px"></td>
<td class="Attrib" align="right">DESIGNATION</td>
<td>{{.A.Designation}}</td>
<td width="50px"></td>
</tr>
<tr>
<td width="50px"></td>
<td class="Attrib" align="right">DESCRIPTION</td>
<td>{{.A.Description}}</td>
<td width="50px"></td>
</tr>
<tr>
<td width="50px"></td>
<td class="Attrib" align="right">COMPANY</td>
<td><a href="/company/{{.A.C.CoCode}}">{{.A.C.Designation}}</a></td>
<td width="50px"></td>
</tr>
<tr>
<td width="50px"></td>
<td colspan="2"><p></p>
<hr>
<p></p></td>
<td width="50px"></td>
</tr>
<tr>
<td width="50px"></td>
<td colspan="2">
<p align="center">
<form action="/adminViewBtn/" method="POST">
<input type="submit" name="action" value="Done">
{{if hasAdminScreenAccess .X.Token 3 4}}
<input type="submit" name="action" value="AdminEdit">
<input type="hidden" name="url" value="/adminEditClass/{{.A.ClassCode}}">
{{end}}
</form>
</p>
</td>
<td width="50px"></td>
</tr>
</table>
{{ end }}