diff Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 168:97e51ddeeb58

Cambios menores en UI
author nelopauselli
date Sat, 06 Aug 2011 03:34:45 -0300
parents 6f1041301797
children 3095a0b960c8
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Sat Aug 06 02:51:07 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Sat Aug 06 03:34:45 2011 -0300
@@ -3,70 +3,71 @@
 <p>
     Los próximos eventos son:
 </p>
-<table>
-    <thead>
-        <tr>
-            <th>Fecha</th>
-            <th>Evento</th>
-            <th>Estado</th>
-            <th>Acciones</th>
-        </tr>
-    </thead>
-    <tbody>
-        @foreach (var item in Model.ProximosEventos)
-        {
-            <tr>
-                <td>@item.Fecha</td>
-                <td>@item.Titulo</td>
-                <td>@item.Estado</td>
-                <td>
-                    @if (item.PuedeAgendar)
-                    {
-                        @Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null)
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeModificar)
-                    {
-                        @Html.ActionLink("Modificar", "Modificar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeConfirmar)
-                    {
-                        @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedePublicar)
-                    {
-                        @Html.ActionLink("Publicar", "Publicar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeCancelar)
-                    {
-                        @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeDescartar)
-                    {
-                        @Html.ActionLink("Descartar", "Descartar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeReAgendar)
-                    {
-                        @Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                    @if (item.PuedeReProponer)
-                    {
-                        @Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id })
-                        <span>&nbsp;</span>
-                    }
-                </td>
-            </tr>
-        }
-    </tbody>
-</table>
-    
-<p>
-@Html.ActionLink("Nuevo", "Nuevo")
-@Html.ActionLink("Proponer", "Proponer")
-</p>
+<div id="content">
+	<table>
+		<thead>
+			<tr>
+				<th>Fecha</th>
+				<th>Evento</th>
+				<th>Estado</th>
+				<th>Acciones</th>
+			</tr>
+		</thead>
+		<tbody>
+			@foreach (var item in Model.ProximosEventos)
+			{
+				<tr>
+					<td>@item.Fecha</td>
+					<td>@item.Titulo</td>
+					<td>@item.Estado</td>
+					<td class="buttons">
+						@if (item.PuedeAgendar)
+						{
+							@Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null)
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeModificar)
+						{
+							@Html.ActionLink("Modificar", "Modificar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeConfirmar)
+						{
+							@Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedePublicar)
+						{
+							@Html.ActionLink("Publicar", "Publicar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeCancelar)
+						{
+							@Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeDescartar)
+						{
+							@Html.ActionLink("Descartar", "Descartar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeReAgendar)
+						{
+							@Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+						@if (item.PuedeReProponer)
+						{
+							@Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id })
+							<span>&nbsp;</span>
+						}
+					</td>
+				</tr>
+			}
+		</tbody>
+	</table>
+</div>
+<div class="buttons">
+	@Html.ActionLink("Nuevo", "Nuevo")
+	@Html.ActionLink("Proponer", "Proponer")
+</div>