view Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 100:cc91817a4206

Merge
author jorge.rowies
date Sat, 04 Jun 2011 22:46:06 -0300
parents 96d7609f2e08
children
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.PropuestaIndexModel
<h2>Propuestas</h2>
<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("Agendar", "Edit", "Evento", new { id = item.Id }, null)
			</td>
        </tr>
        }
    </tbody>
</table>

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