Koha/koha-tmpl/intranet-tmpl/default/es/parameters/authorised_values.tmpl
2003-06-03 21:41:12 +00:00

91 lines
4.3 KiB
Cheetah

<TMPL_INCLUDE NAME="parameters-top.inc">
<TMPL_IF name="add_form">
<!-------------------------------------------------------------------------------------------------->
<H1><TMPL_VAR name="action"></H1>
<form action='<TMPL_VAR name="script_name">' name=Aform method=post>
<input type=hidden name=op value='add_validate'>
<table>
<tr>
<td>Category</td>
<td><TMPL_VAR name="category"></td>
</tr>
<tr>
<td>Authorised value</td>
<td><input type=text name="authorised_value" value='<TMPL_VAR name="authorised_value">'></td>
</tr>
<tr>
<td>Lib</td>
<td><input type=text name="lib" value='<TMPL_VAR name="lib">'></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="hidden" name="id" value="<TMPL_VAR name="id">">
<INPUT type="submit" value='OK'></td>
</tr>
</table>
</form>
</TMPL_IF>
<TMPL_IF name="delete_confirm">
<!-------------------------------------------------------------------------------------------------->
<table border=0 cellspacing=0 cellpadding=2>
<tr valign=top bgcolor=#99cc33>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b>Variable</b></td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b>Lib</b></td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b><TMPL_VAR name="searchfield"></b></td>
</tr>
<tr><td>Value</td><td><TMPL_VAR name="Tvalue"></td></tr>
<form action='<TMPL_VAR name="script_name">' method=post>
<input type=hidden name=op value=delete_confirmed>
<input type=hidden name=id value='<TMPL_VAR name="id">'>
<input type="hidden" name="searchfield" value="<TMPL_VAR name="searchfield">">
<tr><td colspan=2 align=center>CONFIRM DELETION</td></tr>
<tr><td><INPUT type=submit value='YES'></form></td>
<td><form action='<TMPL_VAR name="script_name">' method=post><input type=submit value=NO></form></td></tr>
</TMPL_IF>
<!-------------------------------------------------------------------------------------------------->
<TMPL_IF name="else">
<font SIZE=6><em>Authorised values admin</em></font>
<p>This table is used in MARC definition. You can define as many categories as you want, and as many authorised values as you want in each category.</p>
<p>When you define the MARC subfield structure, you can link a subfield to a authorised-value category. When the user ask for adding of modifying a biblio,
the subfield is not entered through a free field, but though a list of authorised values</p>
<form action=/cgi-bin/koha/admin/authorised_values.pl method=post>
<TMPL_VAR name="tab_list"><input type="submit" value="OK"> <a href="authorised_values.pl?op=add_form">New category...</a>
</form>
<TMPL_VAR name="searchfield">
<table border=0 cellspacing=0 cellpadding=2 width="80%">
<tr valign=top bgcolor=#99cc33>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b>Category</b></td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b>Authorised value</b></td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif"><b>Lib</b></td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif">Edit</td>
<td background="<TMPL_VAR NAME='themelang'>/images/background-mem.gif">Delete</td>
<TMPL_LOOP name="loop">
</tr valign=top bgcolor='<TMPL_VAR name="bgcolor">'>
<td><TMPL_VAR name="category"></td>
<td><TMPL_VAR name="authorised_value"></td>
<td><TMPL_VAR name="lib"></td>
<td><a href="<TMPL_VAR name="edit">"><img src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/fileopen.png" width=32 hspace=0 vspace=0 border=0></a></td>
<td><a href="<TMPL_VAR name="delete">"><img src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/edittrash.png" width=32 hspace=0 vspace=0 border=0></a></td>
</tr>
</TMPL_LOOP>
<form action='<TMPL_VAR name="script_name">' method=post>
<input type=hidden name=op value=add_form>
</table>
<table width=40%>
<tr>
<td width=50%><TMPL_VAR name="previous"></td>
<td width=50%><TMPL_VAR name="next"></td>
</tr>
</table>
<form action='<TMPL_VAR name="script_name">' method=post>
<input type="hidden" name="op" value="add_form">
<input type="hidden" name="category" value="<TMPL_VAR name="category">">
<br><input type=image src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/filenew.png" title="Add Authorised Value" ALT="Add" BORDER=0 ><br>
</form>
</TMPL_IF>
<TMPL_INCLUDE NAME="parameters-bottom.inc">