diff --git a/aula/templates/account.html b/aula/templates/account.html index f441fcc..b5ecf6a 100644 --- a/aula/templates/account.html +++ b/aula/templates/account.html @@ -1,4 +1,78 @@ {% extends "layout.html" %} {% block content %} -

{{ current_user.name }}

-{% endblock content %} +

Bruger Information

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Attributeværdi
user_id{{ current_user.user_id }}
first_name{{ current_user.first_name }}
last_name{{ current_user.last_name }}
email{{ current_user.email }}
address{{ current_user.address }}
role{{ current_user.role }}
+ +

Grupper

+ + + + + + + + + + {% for group in current_user.get_groups() %} + + + + + + {% endfor %} + +
group_idnamemandatory
{{ group.group_id }}{{ group.name }}{{ group.mandatory }}
+ +

Tråde

+ + + + + + + + + + {% for thread in current_user.get_threads() %} + + + + + + {% endfor %} + +
thread_idtitlegroup_id
{{ thread.thread_id }}{{ thread.title }}{{ thread.group_id }}
+{% endblock content %} \ No newline at end of file