$def with (version, system_id,system_name, system_description, user, url, usersprojects, oauth_access_token)
CLAM Administrative Interface
CLAM Administrative Interface
Users & Projects
{% for user, projects in usersprojects: %}
- {{ user }}
{% for project, date, status in projects %}
- {{ project }}
{% if status == 1 %}
Abort run
{% elif status == 2 %}
Delete project
{% endif %}
{{ date }}
{% if status == 0 %}
staging
{% elif status == 1 %}
running
{% elif status == 2 %}
done
{% endif %}
{% endfor %}
{% endif %}