From efbbd480ddc62e695123d31c31d233b0df5155bd Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 13 May 2024 17:26:25 +0100 Subject: After first pre-commit processing --- pyblackbird_cc/templates/users/user_detail.html | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyblackbird_cc/templates/users/user_detail.html (limited to 'pyblackbird_cc/templates/users/user_detail.html') diff --git a/pyblackbird_cc/templates/users/user_detail.html b/pyblackbird_cc/templates/users/user_detail.html new file mode 100644 index 0000000..7d52259 --- /dev/null +++ b/pyblackbird_cc/templates/users/user_detail.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% load static %} + +{% block title %} + User: + {{ object.name }} +{% endblock title %} +{% block content %} +
+
+
+

{{ object.name }}

+
+
+ {% if object == request.user %} + +
+
+ My Info + E-Mail + MFA + +
+
+ + {% endif %} +
+{% endblock content %} -- cgit v1.2.3