mirror of https://gitee.com/openkylin/cups.git
28 lines
1.1 KiB
Cheetah
28 lines
1.1 KiB
Cheetah
|
<FORM METHOD="POST" ACTION="/admin">
|
|||
|
<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
|
|||
|
<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{OP}">
|
|||
|
<INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">
|
|||
|
{IS_CLASS?<INPUT TYPE="HIDDEN" NAME="IS_CLASS" VALUE="{IS_CLASS}">:}
|
|||
|
|
|||
|
<H2 CLASS="title">Utilisateurs autorisés à utiliser {printer_name}</H2>
|
|||
|
|
|||
|
<TABLE>
|
|||
|
<TR>
|
|||
|
<TH CLASS="label">Utilisateurs :</TH>
|
|||
|
<TD>
|
|||
|
<INPUT TYPE='TEXT' NAME='users' SIZE='60' VALUE='{?requesting_user_name_allowed}{?requesting_user_name_denied}'>
|
|||
|
<BR>
|
|||
|
<INPUT TYPE='RADIO' NAME='type' VALUE='requesting-user-name-allowed' ID='requesting-user-name-allowed' {requesting_user_name_allowed?checked:}><LABEL FOR='requesting-user-name-allowed'>Autoriser ces utilisateurs à imprimer</LABEL>
|
|||
|
<INPUT TYPE='RADIO' NAME='type' VALUE='requesting-user-name-denied' ID='requesting-user-name-denied' {requesting_user_name_denied?checked:}><LABEL FOR='requesting-user-name-denied'>Empêcher ces utilisateurs d'imprimer</LABEL>
|
|||
|
</TD>
|
|||
|
</TR>
|
|||
|
<TR>
|
|||
|
<TD></TD>
|
|||
|
<TD>
|
|||
|
<INPUT TYPE="SUBMIT" VALUE="Définir les autorisations">
|
|||
|
</TD>
|
|||
|
</TR>
|
|||
|
</TABLE>
|
|||
|
|
|||
|
</FORM>
|