Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 182:beeb48ddb44a
Warning con los errores que se guarden en el log del track de un evento durante una notificación (twitter, calendar, blog)
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 21:57:10 -0300 |
parents | 7ef7e4bb71f6 |
children |
comparison
equal
deleted
inserted
replaced
181:6ee05ceea8c3 | 182:beeb48ddb44a |
---|---|
1 @if (TempData.ContainsKey("error")) | 1 @if (TempData.ContainsKey("error")) |
2 { | 2 { |
3 <div class="errorbox"><label>@TempData["error"]</label></div> | 3 <div class="errorbox"><label>@TempData["error"]</label></div> |
4 } | |
5 @if (TempData.ContainsKey("notification")) | |
6 { | |
7 <div class="notificationbox"><label>@TempData["notification"]</label></div> | |
4 } | 8 } |
5 @if (TempData.ContainsKey("warning")) | 9 @if (TempData.ContainsKey("warning")) |
6 { | 10 { |
7 <div class="warningbox"><label>@TempData["warning"]</label></div> | 11 <div class="warningbox"><label>@TempData["warning"]</label></div> |
8 } | 12 } |
9 @if (TempData.ContainsKey("notification")) | |
10 { | |
11 <div class="notificationbox"><label>@TempData["notification"]</label></div> | |
12 } |