Commit a08f80de9ff611af4210ead6405667f87fccb48e

Authored by Wilmer Ramones
1 parent d06da01834
Exists in master

colocados los botones para modificar los jurados del ascenso

app/Resources/views/cea/ascenso_mostar.html.twig
... ... @@ -67,6 +67,8 @@
67 67 <p class="well">
68 68 <strong>{{ tutor.nombres }} {{ tutor.apellidos }}:</strong>
69 69 {{ tutor.institucion }} -> {{ tutor.idEscala.nombre }}
  70 + <input type="button" class="btn btn-warning btn-xs" value="act" id="actualizar_tutor">
  71 + <input type="button" class="btn btn-danger btn-xs" value="cam" id="cambiar_tutor">
70 72 </p>
71 73 {% endfor %}
72 74  
... ... @@ -246,4 +248,13 @@
246 248 {% block javascripts %}
247 249 {{ parent() }}
248 250 <script type="text/javascript" src="{{ asset('assets/vendor/lightbox2/dist/js/lightbox.min.js') }}"></script>
  251 +
  252 + <script>
  253 + $("#actualizar_tutor").click(function(){
  254 + alert("click");
  255 + });
  256 +
  257 +
  258 + </script>
  259 +
249 260 {% endblock %}
250 261 \ No newline at end of file
... ...