view Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 106:80c22175c9b5

agregado de tipo de evento (van, cafe, grupoestudio) agregado de tipo de evento en el alta de evento y en el alta de propuestas desde la app web algunas correcciones en el publicador del blog agregado de textos para publicar en el blog eventos de tipo alt.net cafe
author jorge.rowies
date Mon, 06 Jun 2011 14:07:12 -0300
parents 2adf55ea9199
children 53bcd338542b
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.EventoIndexModel
<h2>Agenda</h2>
<p>
    Los próximos eventos son:
</p>
<table>
    <thead>
        <tr>
            <th>Fecha</th>
            <th>Evento</th>
            <th>Acciones</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var item in Model.ProximosEventos)
        {
        <tr>
            <td>@item.Fecha.ToShortDateString()</td>
            <td>@item.Titulo</td>
            <td>
				@Html.ActionLink("Modificar", "Edit", new { id = item.Id })
				@Html.ActionLink("Confirmar", "Confirm", new { id = item.Id })
			</td>
        </tr>
		}
    </tbody>
</table>
    
<p>
@Html.ActionLink("Nuevo", "New")
</p>