Boton para Ver resultados en la página de editar

This commit is contained in:
nat 2021-12-29 16:45:58 -03:00
parent c96ccfbe1b
commit e1b646fc2f
4 changed files with 23 additions and 1 deletions

13
public/css/app.css vendored
View File

@ -17,6 +17,7 @@ button, input[type="submit"] {
padding: 5px;
color:white;
margin: 15px;
cursor: pointer;
}
input.formulario {
@ -30,3 +31,15 @@ p, label {
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;
}

2
public/js/edit.js vendored
View File

@ -7,7 +7,7 @@ function copiarEnlace() {
/* Copy the text inside the text field */
document.execCommand("copy");
alert("ok");
alert("Enlace copiado");
}
let HORARIO_CONTAINER = null;

View File

@ -54,6 +54,9 @@
<input readonly id="enlace" type="text" value="{{route('edit',['evento' => $evento])}}">
</div>
<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 class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l">

View File

@ -54,9 +54,15 @@
<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
<div class="grid grid-cols-1">
<div class="p-6">
@if (count($marzullos) > 0)
<p>
Hasta ahora estos son los mejores horarios para "{{ $evento->nombre }}":
</p>
@else
<p>
Hasta ahora no hay buenos horarios para "{{ $evento->nombre }}".
</p>
@endif
@each('marzullo', $marzullos, 'marzullo')
</div>
</div>