ban_form.html
1.33 KB
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
<div style="width:550px;height:230px;overflow:auto" id="conteiner">
<pre onclick="this.style.display='none'" class="form_error" id="message" ></pre>
<form id="form_page" class="form" method="post" enctype="multipart/form-data" onsubmit="return false">
<input type="hidden" name="id" tal:attributes="value row/u_id|" />
<table align="center">
<tr>
<td width="25%" class="info" >${M_USERS_BAN_BEGIN} *</td>
<td valign="top">
<input
type="text"
name="b_time_add"
style="width:80px"
tal:attributes="value row/ban_time_add|" />
</td>
</tr>
<tr>
<td width="15%" class="info" >${M_USERS_BAN_END} *</td>
<td valign="top">
<input
type="text"
name="b_time_end"
style="width:80px"
tal:attributes="value row/ban_time_end|" />
</td>
</tr>
<tr>
<td width="15%" class="info" >${M_USERS_BAN_REASON}</td>
<td valign="top">
<textarea name="b_reason" tal:content="row/b_reason|"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:right">
<input type="button" onclick="table.save_ban()" value="${SAVE}" />
<input type="button" onclick="wnd.close()" value="${CLOSE}" />
</td>
</tr>
</table>
</form>
</div>