diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-26 20:57:57 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-26 20:57:57 +0100 |
commit | ab83194ae6b0aeadd57237d32eb08d7c09e703b3 (patch) | |
tree | c4488f77d24a94ab075b6b6f33173734c1ab626e /ctrack/templates | |
parent | 4c96bc3475ba0c97f815a050e79d7983d76233cf (diff) |
when user logs in - now redirects to home page - func and unit tests passing
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/base.html | 2 | ||||
-rw-r--r-- | ctrack/templates/pages/home.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/templates/base.html b/ctrack/templates/base.html index 4398926..c0ee4cd 100644 --- a/ctrack/templates/base.html +++ b/ctrack/templates/base.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> - <title>{% block title %}ctrack{% endblock title %}</title> + <title>{% block title %}ctrack - Department for Transport{% endblock title %}</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> diff --git a/ctrack/templates/pages/home.html b/ctrack/templates/pages/home.html index fbce9ff..bc70c17 100644 --- a/ctrack/templates/pages/home.html +++ b/ctrack/templates/pages/home.html @@ -2,7 +2,7 @@ {% block content %} - <h1>User profile page</h1> + <h1>Welcome to ctrack - Department for Transport</h1> <p>User: {{ object }}</p> |