aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/templates')
-rw-r--r--gn_auth/templates/404.html13
-rw-r--r--gn_auth/templates/base.html14
-rw-r--r--gn_auth/templates/http-error-4xx.html20
-rw-r--r--gn_auth/templates/http-error-5xx.html (renamed from gn_auth/templates/50x.html)0
4 files changed, 27 insertions, 20 deletions
diff --git a/gn_auth/templates/404.html b/gn_auth/templates/404.html
deleted file mode 100644
index e17bfe8..0000000
--- a/gn_auth/templates/404.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{%extends "base.html"%}
-
-{%block title%}404: Page Not Found{%endblock%}
-
-{%block pagetitle%}404: Could Not Find the Requested Page{%endblock%}
-
-{%block content%}
-
-<p>
- The page "<strong>{{page}}</strong>" does not exist on this server.
-</p>
-
-{%endblock%}
diff --git a/gn_auth/templates/base.html b/gn_auth/templates/base.html
index c90ac9b..d80096d 100644
--- a/gn_auth/templates/base.html
+++ b/gn_auth/templates/base.html
@@ -8,21 +8,21 @@
<title>Authorization {%block title%}{%endblock%}</title>
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/bootstrap-custom.css" />
+ href="{{url_for('static', filename='css/bootstrap-custom.css')}}" />
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/non-responsive.css" />
+ href="{{url_for('static', filename='css/non-responsive.css')}}" />
<link rel="stylesheet" type="text/css"
href="{{url_for('static', filename='css/styles.css')}}" />
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/docs.css" />
+ href="{{url_for('static', filename='css/docs.css')}}" />
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/colorbox.css" />
+ href="{{url_for('static', filename='css/colorbox.css')}}" />
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/parsley.css" />
+ href="{{url_for('static', filename='css/parsley.css')}}" />
<link rel="stylesheet" type="text/css"
- href="https://genenetwork.org/static/new/css/broken_links.css" />
+ href="{{url_for('static', filename='css/broken_links.css')}}" />
<link rel="stylesheet"
- href="https://genenetwork.org/static/new/css/autocomplete.css" />
+ href="{{url_for('static', filename='css/autocomplete.css')}}" />
{%block css%}{%endblock%}
</head>
diff --git a/gn_auth/templates/http-error-4xx.html b/gn_auth/templates/http-error-4xx.html
new file mode 100644
index 0000000..16c4581
--- /dev/null
+++ b/gn_auth/templates/http-error-4xx.html
@@ -0,0 +1,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%}
diff --git a/gn_auth/templates/50x.html b/gn_auth/templates/http-error-5xx.html
index 859a232..859a232 100644
--- a/gn_auth/templates/50x.html
+++ b/gn_auth/templates/http-error-5xx.html