vgquotes/Src/VideoGameQuotes.Web/Views/Shared/ExceptionView.ascx
tmont ff3499b3b9 * edit/create/delete categories
* also made error views user-aware
2011-02-24 08:07:50 +00:00

15 lines
482 B
Plaintext

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.ErrorHandling.ErrorModel<VideoGameQuotes.Api.User>>" %>
<%@ Import Namespace="VideoGameQuotes.Api" %>
<%
if (Model.User == null || Model.User.Group < UserGroup.Admin) {
return;
}
if (Model.Exception != null) { %>
<h2>Exception Details</h2> <%
Html.RenderPartial("RecursiveExceptionView", Model.Exception);
} else { %>
<p class="info">No exception was thrown.</p>
<% }
%>