{% extends "common/base.html" %} {% load crispy_forms_tags %} {% block content %} {% if user_dict %}
# | Username | First Name | Last Name | Allocations |
---|---|---|---|---|
{{ forloop.counter }} | {{ user.username }} | {{ user.first_name }} | {{ user.first_name }} |
{% for allocation in allocations %}
{{ allocation.get_parent_resource.name }} ({{ allocation.get_parent_resource.resource_type.name }}) {% if 'slurm' in allocation.get_information %} -- {{allocation.get_information}} {% else %} {% endif %} {% endfor %} |