diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-22 16:22:30 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-22 16:22:30 +0100 |
commit | 5d489ef3685b32ee5e9c68839b1e187870c0d659 (patch) | |
tree | e28d090eb217cad555d07a154e6479878bae5c64 /ctrack/templates/pages | |
parent | 44959fde6494d90d644a11866d86c704a5cf5034 (diff) |
started work on optional User as organisation.Person object - tests
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/pages/home.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ctrack/templates/pages/home.html b/ctrack/templates/pages/home.html index 63913c1..fbce9ff 100644 --- a/ctrack/templates/pages/home.html +++ b/ctrack/templates/pages/home.html @@ -1 +1,9 @@ -{% extends "base.html" %}
\ No newline at end of file +{% extends "base.html" %} + +{% block content %} + + <h1>User profile page</h1> + + <p>User: {{ object }}</p> + +{% endblock content %} |