blob: e6ed5fff231dca46e451abf3d3eccd8e8290b96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{%extends "base.html"%}
{%from "oauth2/profile_nav.html" import profile_nav%}
{%block title%}View User{%endblock%}
{%block content%}
<div class="container" style="min-width: 1250px;">
{{profile_nav("error", user_privileges)}}
<h3>ERROR</h3>
{{flash_me()}}
<div class="container-fluid">
<div class="row">
<dl>
<dt>Error code</dt>
<dd>{{response.status}}[{{response.status_code}}]</dd>
<dt>URI</dt>
<dd>{{response.url}}</dd>
<dt>Content Type</dt>
<dd>{{response.content_type or "-"}}</dd>
<dt>{{response.content}}</dt>
<dd>{{response.content}}</dd>
</dl>
</div>
</div>
</div>
{%endblock%}
|