Koha/koha-tmpl/intranet-tmpl/default/es/modwebsites.tmpl

51 lines
1.4 KiB
Cheetah

<TMPL_INCLUDE Name="acquisitions-top.inc">
<p>
<a href="detail.pl?type=intra&bib=<TMPL_VAR Name="biblionumber">">Volver a la página de detalles</a>
EOF
<TMPL_LOOP Name="websitesloop">
<p>
<form action="updatewebsite.pl" method="post">
<input type="hidden" name="biblionumber" value="<TMPL_VAR Name="biblionumber">">
<input type="hidden" name="websitenumber" value="<TMPL_VAR Name="websitenumber">">
<table>
<tr valign="top">
<td>Título</td>
<td><input type="text" name="title" value="<TMPL_VAR Name="title">"></td>
</tr>
<tr valign="top">
<td>Descripcion</td>
<td><textarea name="description" cols="40" rows="4"><TMPL_VAR Name="description"></textarea></td>
</tr>
<tr valign="top">
<td>URL</td>
<td><input type="text" name="url" value="<TMPL_VAR Name="url">"></td>
</tr>
</table>
<input type="submit" value="Actualizar el link"> <input type="submit" name="delete" value="Delete this Website link">
</form>
</TMPL_LOOP>
<p>
<h2><b>Agregar otro link</b></h2>
<form action="addwebsite.pl" method="post">
<input type="hidden" name="biblionumber" value="<TMPL_VAR Name="biblionumber">">
<table>
<tr valign="top">
<td>Titulo</td>
<td><input type="text" name="title"></td>
</tr>
<tr valign="top">
<td>Descripcion</td>
<td><textarea name="description" cols="40" rows="4"></textarea></td>
</tr>
<tr valign="top">
<td>URL</td>
<td><input type="text" name="url"></td>
</tr>
</table>
<input type="submit" value="Agregar este Link">
</form>
EOF
<TMPL_INCLUDE Name="acquisitions-bottom.inc">