annotate Agendas/trunk/src/Agendas.Web/Views/Shared/Error.cshtml @ 199:39ce09df76dc
Se españolizan algunas palabras, además se adecua el estilo para que sea lo más parecido al sitio de altnethispano.org
author |
alabra |
date |
Mon, 15 Aug 2011 20:00:02 -0400 |
parents |
c8897b1c6f49 |
children |
|
rev |
line source |
10
|
1 @model System.Web.Mvc.HandleErrorInfo
|
82
|
2 @using AltNetHispano.Agendas.Domain.Exceptions;
|
|
3
|
48
|
4 <h2>Error</h2>
|
10
|
5
|
82
|
6 @if (Model.Exception is EventoNotFoundException)
|
|
7 {
|
|
8 <p>No se puede encontrar el evento al que está intentado acceder</p>
|
|
9 }
|
|
10 else
|
|
11 {
|
|
12 <p>Sorry, an error occurred while processing your request.</p>
|
|
13 }
|