Actualizacion desarrollo panel de control y busqueda de usuarios

parent aad4faed
......@@ -96,13 +96,13 @@
}
function openEditarDatosUsuario(event, id, mail, telefono){
function openEditarDatosUsuario(event, id){
event.preventDefault();
//Seteo de los datos del usuario en modal desplegado
$("#correoUsuario").val(mail);
$("#correoUsuario").html(mail);
$("#telefonoUsuario").val(telefono);
$("#telefonoUsuario").html(telefono);
$("#correoUsuario").val($("#emailTabla").html());
$("#correoUsuario").html($("#emailTabla").html());
$("#telefonoUsuario").val($("#movilTabla").html());
$("#telefonoUsuario").html($("#movilTabla").html());
$("#idUsuario").val(id);
$("#modalEdicionUsuarios").modal({
......
......@@ -12,7 +12,7 @@
</div>
{%if usuario is not null %}
<div class="panel-body">
<span title="Editar datos usuario" style="float:right;cursor:pointer" onclick="openEditarDatosUsuario(event,{{usuario.getUmcId()}},'{{usuario.getUmcMovistarEmail()}}','{{usuario.getUmcMovil()}}')"><i class="fa fa-edit fa-3x"></i></span>
<span title="Editar datos usuario" style="float:right;cursor:pointer" onclick="openEditarDatosUsuario(event,{{usuario.getUmcId()}})"><i class="fa fa-edit fa-3x"></i></span>
<div class="btn-group m-r-5 m-b-5">
<a href="javascript:;" class="btn btn-primary"><i class="fa fa-share"></i> Enviar Licencia</a>
<a href="javascript:;" data-toggle="dropdown" class="btn btn-primary dropdown-toggle" aria-expanded="false">
......
......@@ -97,7 +97,7 @@ backend_researcher_editar_usuario:
backend_researcher_enviar_correo:
path: /researcher/enviar/correo
defaults: {_controller: BackendBundle:Rsearch:enviarCorreo}
defaults: {_controller: BackendBundle:Research:enviarCorreo}
methods: [POST]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment