aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/http-error-4xx.html
blob: 16c4581549acc0b2596868483b8d2b2ffaf202e0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{%extends "base.html"%}

{%block title%}{{error.code}}: {{error.name}}{%endblock%}

{%block pagetitle%}{{error.code}}: {{error.name}}{%endblock%}

{%block content%}

<dl>
  <dt>status code</dt>
  <dd>{{error.code}}: {{error.name}}</dd>

  <dt><strong>URI</strong></dt>
  <dd>{{page}}</dd>

  <dt>error description</dt>
  <dd>{{description}}</dd>
</dl>

{%endblock%}