diff options
author | zsloan | 2020-08-31 11:37:18 -0500 |
---|---|---|
committer | zsloan | 2020-08-31 11:37:18 -0500 |
commit | a43c27d387c896c13402edab5ed3443ccbec8333 (patch) | |
tree | 3cec5c61c25d415edc9dce180e816149fa8db7d4 | |
parent | a6942b03bd9c103061a8ad87a2bb07144727e14a (diff) | |
download | genenetwork2-a43c27d387c896c13402edab5ed3443ccbec8333.tar.gz |
Fixed text on not_authenticated to use proper grammar
* wqflask/wqflask/templates/new_security/not_authenticated.html - Changed "this" to "these" since "data" is plural
-rw-r--r-- | wqflask/wqflask/templates/new_security/not_authenticated.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/wqflask/wqflask/templates/new_security/not_authenticated.html b/wqflask/wqflask/templates/new_security/not_authenticated.html index 7d0d3060..ea688346 100644 --- a/wqflask/wqflask/templates/new_security/not_authenticated.html +++ b/wqflask/wqflask/templates/new_security/not_authenticated.html @@ -1,11 +1,11 @@ -{% extends "base.html" %} -{% block title %}Authentication Needed{% endblock %} -{% block content %} - <div class="container"> - <div class="page-header"> - <h3>You lack the permissions to view this data.</h3> - </div> - <p>Please contact the data's owner or GN administrators if you believe you should have access to this data.</p> - </div> - +{% extends "base.html" %} +{% block title %}Authentication Needed{% endblock %} +{% block content %} + <div class="container"> + <div class="page-header"> + <h3>You lack the permissions to view these data.</h3> + </div> + <p>Please contact the data's owner or GN administrators if you believe you should have access to these data.</p> + </div> + {% endblock %} \ No newline at end of file |