-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacp_aimer.html
104 lines (85 loc) · 3.49 KB
/
acp_aimer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!-- INCLUDE overall_header.html -->
<!-- OFX Opriend reverse tene of Investigation FQ -->
<a id="maincontent"></a>
<!-- IF S_EDIT_AI -->
<a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
<h1>{L_TITLE}</h1>
<p>{L_AI_EDIT_EXPLAIN}</p>
<!-- IF S_ERROR -->
<div class="error">
<h3>{L_WARNING}</h3>
<p>{ERROR_MSG}</p>
</div>
<!-- ENDIF -->
<form id="acp_id" method="post" action="{U_ACTION}">
<fieldset>
<legend>{L_TITLE}</legend>
<dl>
<dt><label for="ai_name">{L_AI_NAME}{L_COLON}</label><br /><span>{L_AI_NAME_EXPLAIN}</span></dt>
<dd><input name="ai_name" type="text" id="ai_name" value="{AIMER_NAME}" maxlength="255" /></dd>
</dl>
<dl>
<dt><label for="ai_style">{L_AI_STYLE}{L_COLON}</label><br /><span>{L_AI_STYLE_EXPLAIN}</span></dt>
<dd><select id="ai_style" name="ai_style">{S_STYLE_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="ai_lang">{L_AI_LANG}{L_COLON}</label><br /><span>{L_AI_LANG_EXPLAIN}</span></dt>
<dd><select id="ai_lang" name="ai_lang">{S_LANG_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="ai_active">{L_AI_ACTIVE}{L_COLON}</label></dt>
<dd><select id="ai_active" name="ai_active">{S_ACTIVE_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="ai_agent">{L_AI_AGENT}{L_COLON}</label><br /><span>{L_AI_AGENT_EXPLAIN}</span></dt>
<dd><input name="ai_agent" type="text" id="ai_agent" value="{AI_AGENT}" maxlength="255" /></dd>
</dl>
<dl>
<dt><label for="ai_id">{L_AI_ID}{L_COLON}</label><br /><span>{L_AI_ID_EXPLAIN}</span></dt>
<dd><input name="ai_id" type="text" id="ai_id" value="{AI_ID}" maxlength="255" /></dd>
</dl>
<p class="submit-buttons">
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN}
</p>
</fieldset>
</form>
<!-- ELSE -->
<h1>{L_AIMER}</h1>
<p>{L_AI_EXPLAIN}</p>
<form id="acp_id" method="post" action="{U_ACTION}">
<table class="table1 zebra-table">
<thead>
<tr>
<th>{L_AI_NAME}</th>
<th>{L_AI_LAST_VISIT}</th>
<th colspan="3">{L_OPTIONS}</th>
<th>{L_AIMER}</th>
</tr>
</thead>
<tbody>
<!-- BEGIN aimer -->
<tr>
<td style="width: 60%;">{ai.AI_NAME}</td>
<td style="width: 15%; white-space: nowrap;" align="center"> {ai.LAST_VISIT} </td>
<td style="text-align: center;"> <a href="{ai.U_ACTIVATE_DEACTIVATE}" data-ajax="activate_deactivate">{ai.L_ACTIVATE_DEACTIVATE}</a> </td>
<td style="text-align: center;"> <a href="{ai.U_EDIT}">{L_EDIT}</a> </td>
<td style="text-align: center;"> <a href="{ai.U_DELETE}" data-ajax="row_delete">{L_DELETE}</a> </td>
<td style="text-align: center;"><input type="checkbox" class="radio" name="mark[]" value="{aimer.AI_ID}" /></td>
</tr>
<!-- END aimer -->
</tbody>
</table>
<fieldset class="quick" style="float: {S_CONTENT_FLOW_BEGIN};">
<input class="button2" name="add" type="submit" value="{L_AI_ADD}" />
</fieldset>
<fieldset class="quick" style="float: {S_CONTENT_FLOW_END};">
<select name="action">{S_AI_OPTIONS}</select>
<input class="button2" name="submit" type="submit" value="{L_SUBMIT}" />
<p class="small"><a href="#" onclick="list('acp_id', 'mer', true);">{L_MARK_ALL}</a> • <a href="#" onclick="list('acp_id', 'mer', false);">{L_UNMARK_ALL}</a></p>
{S_FORM_TOKEN}
</fieldset>
</form>
<!-- ENDIF -->
<!-- INCLUDE overall_footer.html -->