view Agendas/trunk/src/Agendas.Web/Views/Persona/Index.cshtml @ 168:97e51ddeeb58

Cambios menores en UI
author nelopauselli
date Sat, 06 Aug 2011 03:34:45 -0300
parents a2b14da4902f
children
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.PersonaIndexModel
<h2>Personas</h2>
<p>
    Las personas registradas en la aplicación son:
</p>
<div id="content">
	<table>
		<thead>
			<tr>
				<th>Nombre</th>
				<th>Acciones</th>
			</tr>
		</thead>
		<tbody>
			@foreach (var item in Model.Items)
			{
				<tr>
					<td>@item.Nombre</td>
					<td class="buttons">
							@Html.ActionLink("Modificar", "Modificar", null, new { id = item.Id }, null)
							<span>&nbsp;</span>
							@Html.ActionLink("Quitar", "Quitar", null, new { id = item.Id }, null)
							<span>&nbsp;</span>
					</td>
				</tr>
			}
		</tbody>
	</table>
</div>    
<div class="buttons">
	@Html.ActionLink("Nueva", "Nueva")
</div>