changeset 148:c99636fbdc5f

Ticket 155: Agregar Nro de Orden, Tipo y Duración real en la pantalla de Histórico, similar a como es la página actual en altnethispano.org. Pendiente: Falta que tome la duración cargada.
author juanjose.montesdeocaarbos
date Tue, 02 Aug 2011 23:05:50 -0300
parents 5a1f7233aa5a
children c03c49202280
files Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml
diffstat 3 files changed, 14 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs	Mon Aug 01 17:34:35 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs	Tue Aug 02 23:05:50 2011 -0300
@@ -21,7 +21,10 @@
 			            		               		Titulo = e.Titulo,
 			            		               		Fecha = e.Fecha.HasValue ? e.Fecha.Value.ToShortDateString() : string.Empty,
 			            		               		Wiki = e.UrlWiki,
-													Ponente = e.Ponente.Nombre
+													Ponente = e.Ponente.Nombre,
+                                                    Numero = e.NumeroOrden.ToString(),
+                                                    Tipo = e.Tipo.ToString(),
+                                                    Duracion = "0:00"
 			            		               	}
 			            	};
 			return View(model);
--- a/Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs	Mon Aug 01 17:34:35 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs	Tue Aug 02 23:05:50 2011 -0300
@@ -11,10 +11,13 @@
 	public class HistoricoDto
 	{
 		public string Id { get; set; }
+        public string Numero { get; set; }
+        public string Tipo { get; set; }
 		public string Titulo { get; set; }
 		public string Fecha { get; set; }
 		public string Wiki { get; set; }
 		public string Ponente { get; set; }
+		public string Duracion { get; set; }
 	}
 
 }
\ No newline at end of file
--- a/Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml	Mon Aug 01 17:34:35 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml	Tue Aug 02 23:05:50 2011 -0300
@@ -6,20 +6,24 @@
 <table>
     <thead>
         <tr>
+            <th>Nro.</th>
             <th>Fecha</th>
+            <th>Tipo</th>
             <th>Evento</th>
             <th>Ponente</th>
-            <th>Wiki</th>
+            <th>Duraci&oacute;n</th>
         </tr>
     </thead>
     <tbody>
         @foreach (var item in Model.Items)
         {
         <tr>
+            <td>@item.Numero</td>
             <td>@item.Fecha</td>
-            <td>@item.Titulo</td>
+            <td>@item.Tipo</td>
+            <td><a href="@item.Wiki">@item.Titulo</a></td>
             <td>@item.Ponente</td>
-            <td>@item.Wiki</td>
+            <td>@item.Duracion</td>
         </tr>
 		}
     </tbody>