Boton para Ver resultados en la página de editar
This commit is contained in:
parent
c96ccfbe1b
commit
e1b646fc2f
|
@ -17,6 +17,7 @@ button, input[type="submit"] {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
color:white;
|
color:white;
|
||||||
margin: 15px;
|
margin: 15px;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.formulario {
|
input.formulario {
|
||||||
|
@ -30,3 +31,15 @@ p, label {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.button {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
-moz-appearance: button;
|
||||||
|
appearance: button;
|
||||||
|
|
||||||
|
background: darkred;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 5px;
|
||||||
|
color: white;
|
||||||
|
margin: 15px;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
|
@ -7,7 +7,7 @@ function copiarEnlace() {
|
||||||
|
|
||||||
/* Copy the text inside the text field */
|
/* Copy the text inside the text field */
|
||||||
document.execCommand("copy");
|
document.execCommand("copy");
|
||||||
alert("ok");
|
alert("Enlace copiado");
|
||||||
}
|
}
|
||||||
|
|
||||||
let HORARIO_CONTAINER = null;
|
let HORARIO_CONTAINER = null;
|
||||||
|
|
|
@ -54,6 +54,9 @@
|
||||||
<input readonly id="enlace" type="text" value="{{route('edit',['evento' => $evento])}}">
|
<input readonly id="enlace" type="text" value="{{route('edit',['evento' => $evento])}}">
|
||||||
</div>
|
</div>
|
||||||
<button onclick="copiarEnlace()" id="copiar-enlace">Copiar enlace</button>
|
<button onclick="copiarEnlace()" id="copiar-enlace">Copiar enlace</button>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<a href="{{route('show',['evento' => $evento])}}" class="button">Ver resultados de la encuesta (hasta ahora)</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l">
|
<div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l">
|
||||||
|
|
|
@ -54,9 +54,15 @@
|
||||||
<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
|
<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
|
||||||
<div class="grid grid-cols-1">
|
<div class="grid grid-cols-1">
|
||||||
<div class="p-6">
|
<div class="p-6">
|
||||||
|
@if (count($marzullos) > 0)
|
||||||
<p>
|
<p>
|
||||||
Hasta ahora estos son los mejores horarios para "{{ $evento->nombre }}":
|
Hasta ahora estos son los mejores horarios para "{{ $evento->nombre }}":
|
||||||
</p>
|
</p>
|
||||||
|
@else
|
||||||
|
<p>
|
||||||
|
Hasta ahora no hay buenos horarios para "{{ $evento->nombre }}".
|
||||||
|
</p>
|
||||||
|
@endif
|
||||||
@each('marzullo', $marzullos, 'marzullo')
|
@each('marzullo', $marzullos, 'marzullo')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue