Modifiche testi listino prezzi

This commit is contained in:
michele 2024-10-23 15:20:10 +02:00
parent 0fa1e90a5d
commit 8c47fa3006
2 changed files with 18 additions and 8 deletions

View File

@ -48,9 +48,9 @@
</div>
<br />
<div>
<p>
@* <p>
<b>Nuova funzionalità Time Sheet in Virtual Task</b>
</p>
</p> *@
Per ogni utente/dispositivo € 2,00 mese.
Non attivabile nella versione free.
</div>
@ -83,6 +83,9 @@
<div class="row" style="float:right; width:40%;">
<div class="col-sm-12">
<div>
<p>
<b>Nuova funzionalità Time Sheet in Virtual Task</b>
</p>
<p>
<h4>Abbonamento Virtual Task Time Sheet</h4>
</p>

View File

@ -92,12 +92,19 @@
<a href="@Url.Action("Delete", "Registrazioni", new { id=item.id })" title="Elimina" class="links">
<img alt="Elimina" src="@Url.Content("~/assets/images/icons8-elimina-50.png")" style="width:30px;height:30px;">
</a>
<a href="@Url.Action("Attiva", "Registrazioni", new { id=item.id })" title="Attiva utente" class="links">
<img alt="Attiva" src="@Url.Content("~/assets/images/icons8-pulsante-di-spegnimento-50.png")" style="width:30px;height:30px;">
</a>
<a href="@Url.Action("Disattiva", "Registrazioni", new { id=item.id })" title="Disattiva utente" class="links">
<img alt="Disattiva" src="@Url.Content("~/assets/images/icons8-rimuovere-l'utente-uomo-50.png")" style="width:30px;height:30px;">
</a>
@if(item.numtec == null || item.numtec == 0)
{
<a href="@Url.Action("Attiva", "Registrazioni", new { id=item.id })" title="Attiva utente" class="links">
<img alt="Attiva" src="@Url.Content("~/assets/images/icons8-pulsante-di-spegnimento-50.png")" style="width:30px;height:30px;">
</a>
}
else
{
<a href="@Url.Action("Disattiva", "Registrazioni", new { id=item.id })" title="Disattiva utente" class="links">
<img alt="Disattiva" src="@Url.Content("~/assets/images/icons8-rimuovere-l'utente-uomo-50.png")" style="width:30px;height:30px;">
</a>
}
</td>
</tr>
}