{% extends popup_view|yesno:"base/popup.html,base.html" %}
{% load custom_tags_and_filters %}
{% block title %}{{ event.tool }} usage details{% endblock %}
{% block content %}
{% if not popup_view %}
{{ event.tool }} usage details
{% endif %}
User: |
{{ event.user }} |
Operator: |
{{ event.operator }} |
Project: |
{{ event.project.name }} |
Tool: |
{{ event.tool }} |
Start: |
{{ event.start }} |
End: |
{% if event.end %}
{{ event.end }}
{% else %}
This tool is currently in use.
{% endif %}
|
Identifier: |
{{ event.id }} |
{% if "tool"|customization:"tool_control_hide_data_history_users" != "enabled" or user.is_staff or user == event.user %}
{% if event.pre_run_data_json.items %}
Pre run data: |
{% for question_name, data in event.pre_run_data_json.items %}
{% if data.type == 'group' %}
{{ data.title }}
{% if data.title|slice:"-1:" != ":" %}:{% endif %}
|
{% res_question_tbody data.user_input %}
|
{% else %}
{{ data.title }}
{% if data.title|slice:"-1:" != ":" %}:{% endif %}
|
{{ data.user_input|linebreaksbr }} |
{% endif %}
{% endfor %}
|
{% endif %}
{% if event.post_run_data_json.items %}
Post run data: |
{% for question_name, data in event.post_run_data_json.items %}
{% if data.type == 'group' %}
{{ data.title }}
{% if data.title|slice:"-1:" != ":" %}:{% endif %}
|
{% res_question_tbody data.user_input %}
|
{% else %}
{{ data.title }}
{% if data.title|slice:"-1:" != ":" %}:{% endif %}
|
{{ data.user_input|linebreaksbr }} |
{% endif %}
{% endfor %}
|
{% endif %}
{% endif %}
{% if popup_view %}
{% if "tool"|customization:"tool_control_hide_data_history_users" != "enabled" or user.is_staff or user == event.user %}
{% if event.pre_run_data_json.items or event.post_run_data_json.items %}
{% endif %}
{% endif %}
{% endif %}
{% endblock %}