{% 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 %} {% 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 %} {% endif %} {% if event.post_run_data_json.items %} {% endif %} {% 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 }}
Pre run data: {% for question_name, data in event.pre_run_data_json.items %} {% if not data.readonly %} {% if data.type == 'group' %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {% res_question_tbody data.user_input %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {{ data.user_input|linebreaksbr }}
Post run data: {% for question_name, data in event.post_run_data_json.items %} {% if not data.readonly %} {% if data.type == 'group' %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {% res_question_tbody data.user_input %}
{{ data.title }} {% if data.title|slice:"-1:" != ":" %}:{% endif %} {{ data.user_input|linebreaksbr }}
{% 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 %}