Mercurial > altnet-hispano
changeset 171:4e4b758ab744
Ticket 155: Se carga la DuraciĆ³n correcta, formateada en HH:MM
author | juanjose.montesdeocaarbos |
---|---|
date | Sat, 06 Aug 2011 13:46:56 -0300 |
parents | 13b661a29242 |
children | a18d4d12fc36 b7621309524f |
files | Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Sat Aug 06 12:57:54 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs Sat Aug 06 13:46:56 2011 -0300 @@ -24,7 +24,7 @@ Ponente = e.Ponente.Nombre, Numero = e.NumeroOrden.ToString(), Tipo = e.Tipo.ToString(), - Duracion = "0:00" //TODO: e.GetEvento() + Duracion = e.Duracion.ToString(@"hh\:mm") } }; return View(model);