15 lines
482 B
Plaintext
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>
|
|
<% }
|
|
%> |