{% extends "layout.html" %} {% block content %}

Bruger Information

Attribute værdi
cpr_num {{ current_user.cpr_num }}
first_name {{ current_user.first_name }}
last_name {{ current_user.last_name }}
role {{ current_user.role }}

Grupper

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

Tråde

{% for thread in current_user.get_threads() %} {% endfor %}
thread_id title group_id
{{ thread.thread_id }} {{ thread.title }} {{ thread.group_id }}
{% endblock content %}