From a35205d4bba1e5167612c630c83836ff34b07ea7 Mon Sep 17 00:00:00 2001 From: Matthew Gray <44288823+mmoomocow@users.noreply.github.com> Date: Thu, 18 May 2023 22:07:14 +1200 Subject: [PATCH] style(frontend): :truck: Reorder student list fields Move student ID out of heading tag and place below Signed-off-by: Matthew Gray <44288823+mmoomocow@users.noreply.github.com> --- students/templates/students/list_students.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/students/templates/students/list_students.html b/students/templates/students/list_students.html index 1b1c3c2..192db09 100644 --- a/students/templates/students/list_students.html +++ b/students/templates/students/list_students.html @@ -31,7 +31,8 @@
{% for student in students %}
-

{{ student.user.first_name }} {{ student.user.last_name }} ({{ student.id }})

+

{{ student.user.first_name }} {{ student.user.last_name }}

+ ID: {{ student.id }}
Email: {{ student.user.email }} {% if student.commendations_set.count == "1" %}

1 commendation