view Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 34:475be11edf56

Ajuste en los nombre de los assemblies y namespaces
author nelo@MTEySS.neluz.int
date Thu, 17 Mar 2011 16:59:29 -0300
parents 71b02443450a
children 08dbe42fdde1
line wrap: on
line source

@model AltNetHispano.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>