# HG changeset patch
# User juanjose.montesdeocaarbos
# Date 1312794814 10800
# Node ID 3095a0b960c82bc0807965c6a2360e2e9cfa9f45
# Parent a18d4d12fc36378f709fcd4dc5af54b580c156a0
Ticket 153: UI de Publicar. Se agregó ui-button-confirm a botones que requieren confirmación y el comportamiento.
diff -r a18d4d12fc36 -r 3095a0b960c8 Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml Sat Aug 06 15:11:41 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml Mon Aug 08 06:13:34 2011 -0300
@@ -23,7 +23,7 @@
@if (item.PuedeAgendar)
{
- @Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null)
+ @Html.ActionLink("Agendar", "Agendar", "Evento", new { id = item.Id }, null)
}
@if (item.PuedeModificar)
@@ -33,7 +33,7 @@
}
@if (item.PuedeConfirmar)
{
- @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id })
+ @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id }, new { @class = "ui-button-confirm" })
}
@if (item.PuedePublicar)
@@ -43,12 +43,12 @@
}
@if (item.PuedeCancelar)
{
- @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id })
+ @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id }, new { @class = "ui-button-confirm"})
}
@if (item.PuedeDescartar)
{
- @Html.ActionLink("Descartar", "Descartar", new { id = item.Id })
+ @Html.ActionLink("Descartar", "Descartar", new { id = item.Id }, new { @class = "ui-button-confirm"})
}
@if (item.PuedeReAgendar)
diff -r a18d4d12fc36 -r 3095a0b960c8 Agendas/trunk/src/Agendas.Web/Views/Shared/_Layout.cshtml
--- a/Agendas/trunk/src/Agendas.Web/Views/Shared/_Layout.cshtml Sat Aug 06 15:11:41 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Shared/_Layout.cshtml Mon Aug 08 06:13:34 2011 -0300
@@ -1,24 +1,29 @@
- Gestión de VANs
-
-
-
+ Gestión de VANs
+
+
+
-
+
-