6 |
kaklik |
1 |
<!-- BEGIN errors -->
|
|
|
2 |
<div class="errors">
|
|
|
3 |
<ul>
|
|
|
4 |
<!-- BEGIN error -->
|
|
|
5 |
<li>{errors.error.ERROR}</li>
|
|
|
6 |
<!-- END error -->
|
|
|
7 |
</ul>
|
|
|
8 |
</div>
|
|
|
9 |
<!-- END errors -->
|
|
|
10 |
|
|
|
11 |
<!-- BEGIN add_user -->
|
|
|
12 |
<div class="admin">{L_GROUP_ADD_USER}</div>
|
|
|
13 |
<form method="post" name="post" action="{add_user.F_ACTION}">
|
|
|
14 |
{L_USERNAME} <input type="text" name="login" maxlength="50" size="20" />
|
|
|
15 |
{L_PASSWORD} <input type="text" name="password" />
|
|
|
16 |
<input type="submit" name="submit_add" value="{L_SUBMIT}" class="bouton" />
|
|
|
17 |
</form>
|
|
|
18 |
<!-- END add_user -->
|
|
|
19 |
|
|
|
20 |
<!-- BEGIN select_user -->
|
|
|
21 |
<div class="admin">{L_SELECT_USERNAME}</div>
|
|
|
22 |
<form method="post" name="post" action="{F_SEARCH_USER_ACTION}">
|
|
|
23 |
<input type="text" name="username" maxlength="50" size="20" />
|
|
|
24 |
<input type="submit" name="submituser" value="{L_LOOKUP_USER}" class="bouton" />
|
|
|
25 |
<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="bouton" onClick="window.open('{U_SEARCH_USER}', '_phpwgsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" />
|
|
|
26 |
</form>
|
|
|
27 |
|
|
|
28 |
<div class="admin">{L_USERS_LIST}</div>
|
|
|
29 |
<form method="get" action="{F_ORDER_ACTION}">
|
|
|
30 |
<input type="hidden" name="page" value="profile" />
|
|
|
31 |
<div style="text-align:center">
|
|
|
32 |
{L_ORDER_BY}
|
|
|
33 |
<select name="order_by">
|
|
|
34 |
<!-- BEGIN order_by -->
|
|
|
35 |
<option value="{select_user.order_by.VALUE}" {select_user.order_by.SELECTED} >{select_user.order_by.CONTENT}</option>
|
|
|
36 |
<!-- END order_by -->
|
|
|
37 |
</select>
|
|
|
38 |
<select name="direction">
|
|
|
39 |
<!-- BEGIN direction -->
|
|
|
40 |
<option value="{select_user.direction.VALUE}" {select_user.direction.SELECTED} >{select_user.direction.CONTENT}</option>
|
|
|
41 |
<!-- END direction -->
|
|
|
42 |
</select>
|
|
|
43 |
<input type="submit" value="{L_SUBMIT}" class="bouton" />
|
|
|
44 |
</div>
|
|
|
45 |
</form>
|
|
|
46 |
|
|
|
47 |
<table style="width:100%;" >
|
|
|
48 |
<tr class="throw">
|
|
|
49 |
<th style="width:20%;">{L_USERNAME}</th>
|
|
|
50 |
<th style="width:20%;">{L_STATUS}</th>
|
|
|
51 |
<th style="width:30%;">{L_EMAIL}</th>
|
|
|
52 |
<th style="width:30%;">{L_GROUPS}</th>
|
|
|
53 |
<th style="width:1%;">{L_ACTIONS}</th>
|
|
|
54 |
</tr>
|
|
|
55 |
<!-- BEGIN user -->
|
|
|
56 |
<tr>
|
|
|
57 |
<td><a href="{select_user.user.U_MOD}">{select_user.user.USERNAME}</a></td>
|
|
|
58 |
<td>{select_user.user.STATUS}</td>
|
|
|
59 |
<td>{select_user.user.EMAIL}</td>
|
|
|
60 |
<td>{select_user.user.GROUPS}</td>
|
|
|
61 |
<!-- [<a href="{select_user.user.U_MOD}">{L_MODIFY}</a>] -->
|
|
|
62 |
<td>[<a href="{select_user.user.U_PERM}">{L_PERMISSIONS}</a>]</td>
|
|
|
63 |
</tr>
|
|
|
64 |
<!-- END user -->
|
|
|
65 |
</table>
|
|
|
66 |
<div class="navigationBar">{NAVBAR}</div>
|
|
|
67 |
<!-- END select_user -->
|
|
|
68 |
<!-- BEGIN modify -->
|
|
|
69 |
<!-- BEGIN profile -->
|
|
|
70 |
<div class="titrePage">{L_TITLE}</div>
|
|
|
71 |
<!-- END profile -->
|
|
|
72 |
<form method="post" action="{F_ACTION}">
|
|
|
73 |
<table width="70%" align="center">
|
|
|
74 |
<tr class="admin">
|
|
|
75 |
<th colspan="2">{L_REGISTRATION_INFO}</th>
|
|
|
76 |
</tr>
|
|
|
77 |
<tr>
|
|
|
78 |
<td width="50%">{L_USERNAME}</td>
|
|
|
79 |
<td><input type="text" name="username" value="{USERNAME}" />
|
|
|
80 |
<input type="hidden" name="userid" value="{USERID}" /></td>
|
|
|
81 |
</tr>
|
|
|
82 |
<tr>
|
|
|
83 |
<td>{L_EMAIL}</td>
|
|
|
84 |
<td><input type="text" name="mail_address" value="{EMAIL}" /></td>
|
|
|
85 |
</tr>
|
|
|
86 |
<!-- BEGIN profile -->
|
|
|
87 |
<tr>
|
|
|
88 |
<td>{L_CURRENT_PASSWORD} : <br /><span class="small">{L_CURRENT_PASSWORD_HINT}</span></td>
|
|
|
89 |
<td><input type="password" name="password" value="" /></td>
|
|
|
90 |
</tr>
|
|
|
91 |
<!-- END profile -->
|
|
|
92 |
<tr>
|
|
|
93 |
<td>{L_NEW_PASSWORD} : <br /><span class="small">{L_NEW_PASSWORD_HINT}</span></td>
|
|
|
94 |
<td><input type="password" name="use_new_pwd" value="" /></td>
|
|
|
95 |
</tr>
|
|
|
96 |
<tr>
|
|
|
97 |
<td>{L_CONFIRM_PASSWORD} : <br /><span class="small">{L_CONFIRM_PASSWORD_HINT}</span></td>
|
|
|
98 |
<td><input type="password" name="passwordConf" value="" /></td>
|
|
|
99 |
</tr>
|
|
|
100 |
<tr class="admin">
|
|
|
101 |
<th colspan="2">{L_PREFERENCES}</th>
|
|
|
102 |
</tr>
|
|
|
103 |
<tr>
|
|
|
104 |
<td width="60%">{L_NB_IMAGE_LINE}</td>
|
|
|
105 |
<td width="40%"><input type="text" size="3" maxlength="2" name="nb_image_line" value="{NB_IMAGE_LINE}" /></td>
|
|
|
106 |
</tr>
|
|
|
107 |
<tr>
|
|
|
108 |
<td>{L_NB_ROW_PAGE}</td>
|
|
|
109 |
<td><input type="text" size="3" maxlength="2" name="nb_line_page" value="{NB_ROW_PAGE}" /></td>
|
|
|
110 |
</tr>
|
|
|
111 |
<tr>
|
|
|
112 |
<td>{L_STYLE_SELECT}</td>
|
|
|
113 |
<td>{STYLE_SELECT}</td>
|
|
|
114 |
</tr>
|
|
|
115 |
<tr>
|
|
|
116 |
<td>{L_LANG_SELECT}</td>
|
|
|
117 |
<td>{LANG_SELECT}</td>
|
|
|
118 |
</tr>
|
|
|
119 |
<tr>
|
|
|
120 |
<td>{L_RECENT_PERIOD}</td>
|
|
|
121 |
<td><input type="text" size="3" maxlength="2" name="recent_period" value="{RECENT_PERIOD}" /></td>
|
|
|
122 |
</tr>
|
|
|
123 |
<tr>
|
|
|
124 |
<td>{L_EXPAND_TREE}</td>
|
|
|
125 |
<td><input type="radio" class="radio" name="expand" value="true" {EXPAND_TREE_YES} />{L_YES}
|
|
|
126 |
<input type="radio" class="radio" name="expand" value="false" {EXPAND_TREE_NO} />{L_NO}</td>
|
|
|
127 |
</tr>
|
|
|
128 |
<tr>
|
|
|
129 |
<td>{L_NB_COMMENTS}</td>
|
|
|
130 |
<td><input type="radio" class="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES} />{L_YES}
|
|
|
131 |
<input type="radio" class="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO} />{L_NO}</td>
|
|
|
132 |
</tr>
|
|
|
133 |
<tr>
|
|
|
134 |
<td>{L_MAXWIDTH}</td>
|
|
|
135 |
<td><input type="text" size="4" maxlength="4" name="maxwidth" value="{MAXWIDTH}" />
|
|
|
136 |
</td>
|
|
|
137 |
</tr>
|
|
|
138 |
<tr>
|
|
|
139 |
<td>{L_MAXHEIGHT}</td>
|
|
|
140 |
<td><input type="text" size="4" maxlength="4" name="maxheight" value="{MAXHEIGHT}" />
|
|
|
141 |
</td>
|
|
|
142 |
</tr>
|
|
|
143 |
<!-- BEGIN admin -->
|
|
|
144 |
<tr class="admin">
|
|
|
145 |
<th colspan="2">{modify.admin.L_ADMIN_USER}</th>
|
|
|
146 |
</tr>
|
|
|
147 |
<tr>
|
|
|
148 |
<td>{modify.admin.L_STATUS}</td>
|
|
|
149 |
<td>{modify.admin.STATUS}
|
|
|
150 |
</td>
|
|
|
151 |
</tr>
|
|
|
152 |
<tr>
|
|
|
153 |
<td>{modify.admin.L_DELETE}<br />
|
|
|
154 |
<span class="small">{modify.admin.L_DELETE_HINT}</span></td>
|
|
|
155 |
<td><input name="user_delete" type="checkbox" value="1">
|
|
|
156 |
</td>
|
|
|
157 |
</tr>
|
|
|
158 |
<!-- END admin -->
|
|
|
159 |
<tr>
|
|
|
160 |
<td colspan="2" align="center">
|
|
|
161 |
<input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
|
|
|
162 |
<input type="reset" name="reset" value="{L_RESET}" class="bouton" />
|
|
|
163 |
</td>
|
|
|
164 |
</tr>
|
|
|
165 |
</table>
|
|
|
166 |
</form>
|
|
|
167 |
<!-- BEGIN profile -->
|
|
|
168 |
<div style="text-align:center;margin:5px;">
|
|
|
169 |
<a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a>
|
|
|
170 |
</div>
|
|
|
171 |
<!-- END profile -->
|
|
|
172 |
<!-- END modify -->
|