{% load static %} {% if user_obj %}
Content by {{ user_obj.get_full_name }} ({{ user_obj.username }})
{% for app_key, info in content.items %}
{{ info.label }}
Questions: {{ info.questions|length }}   Exams: {{ info.exams|length }}
{% if info.questions %}
    {% for q in info.questions %}
  • {% comment %} Try to link to app question detail if available {% endcomment %} {{ q }}
  • {% endfor %}
{% endif %} {% if info.exams %}
    {% for ex in info.exams %}
  • {{ ex }}
  • {% endfor %}
{% endif %}
{% endfor %}
Atlas Cases
Cases: {{ atlas_cases|length }}
{% if atlas_cases %} {% endif %}
Atlas Collections
Collections: {{ atlas_collections|length }}
{% if atlas_collections %} {% endif %}
{% else %}
No user found
{% endif %}