PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.5 KiB

{capture name="display"}
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="2" class="formCad">
<tr align="center" valign="middle">
<td height="50" colspan="2" class="formHed">
<img src="imgSite/atualiza-now.png" width="32" align="absmiddle"><span class="formHed">Controle de Atualiza<EFBFBD><EFBFBD>es</span>
</td>
</tr>
<tr>
<td></td>
<td><input name="id" type="text" id="id" value="{$id}" size="10" maxlength="60" hidden></td></td>
</tr>
<tr>
<th width="120" align="left">Nomenclatura (Vers<EFBFBD>o)</th>
<td><input name="nomenclatura" type="text" id="descricao" value="{$nomenclatura}" size="10" maxlength="60" ></td>
</tr>
<tr>
<th align="left">Atualiza<EFBFBD><EFBFBD>es</th>
<td><textarea name="atualizacoes" rows="5" cols="50">{$atualizacao}</textarea></td>
</tr>
<tr>
<th align="left">Corre<EFBFBD><EFBFBD>es</th>
<td><textarea name="correcoes" rows="5" cols="50" >{$correcao}</textarea></td>
</tr>
<tr>
<th align="left">Descri<EFBFBD><EFBFBD>o</th>
<td><textarea name="descricao" rows="5" cols="50">{$descricao}</textarea></td>
</tr>
<tr>
<th align="left" id="db">Data de Homologa<EFBFBD><EFBFBD>o</th>
<td><input name="dataHom" id="dataIni" type="text" size="15" maxlength="10" value="{$data}" onkeyup="formataData(this)" title="dd/mm/aaaa"></td>
</tr>
<tr>
<td></td>
<td>
<input name="btExecutar" type="submit" id="formAcaoDesc" value="{$action}">
<input name="btClose" type="submit" id="btClose" value="Fechar" onClick="window.close();">
</td>
</tr>
{if $mensagem}
<tr>
<td></td>
<td>
<span style="color: #0000CC;font-size: 14px">{$mensagem}</span>
</td>
</tr>
{/if}
</table>
{literal}
<script>
$(function () {
$('#formAcaoDesc').on('click', function () {
opener.location.reload();
});
$('#btClose').on('click', function () {
opener.location.reload();
});
window.onunload = Sair;
function Sair()
{
opener.location.reload();
}
});
</script>
{/literal}
{/capture}