view Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 26:71b02443450a

UI de Propuestas de VANs
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 08:45:00 -0300
parents
children 475be11edf56
line wrap: on
line source

@model Agendas.Web.Models.PropuestaIndexModel
@{
    ViewBag.Title = "Propuestas";
}

<p>
    Temas propuestos aun no agendados
</p>
<table>
    <thead>
        <tr>
            <th>Propuesta</th>
            <th>Ponente</th>
            <th>Acciones</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var item in Model.Propuestas)
        {
        <tr>
            <td>@item.Titulo</td>
            <td>@item.Ponente</td>
            <td>
				@Html.ActionLink("Modificar", "Edit", new { id = item.Id })
				@Html.ActionLink("Publicar", "Publish", new { id = item.Id })
			</td>
        </tr>
        }
    </tbody>
</table>

<p>
@Html.ActionLink("Nueva", "New")
</p>