summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-01-23 15:56:35 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-01-26 11:28:11 +0000
commit7d39840261976a00baa124104937d0d03ee9ef17 (patch)
tree11fa20014f1f3191a60d8f99def74c2cee7b117b
parentafe90669f1012c25bce416a5c21da3f92c2f07e9 (diff)
downloadinfrastructure-7d39840261976a00baa124104937d0d03ee9ef17.tar.gz
openid_provider: Give 'correct' URL for OpenID on index page
-rw-r--r--baserock_openid_provider/templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/baserock_openid_provider/templates/index.html b/baserock_openid_provider/templates/index.html
index d5748a83..053a9ce0 100644
--- a/baserock_openid_provider/templates/index.html
+++ b/baserock_openid_provider/templates/index.html
@@ -5,7 +5,7 @@
<p>This is the Baserock OpenID provider.</p>
{% if user.is_authenticated %}
- <p>Your OpenID is: <a href="http://openid.baserock.org/openid/{{ user.username }}">http://openid.baserock.org/openid/{{ user.username }}</a></p>
+ <p>Your OpenID is: <a href="http://openid.baserock.org/openid/{{ user.username }}/">http://openid.baserock.org/openid/{{ user.username }}/</a></p>
{% endif %}
{% endblock %}