{# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. #} {% extends "job.html" %} {% from "helper.html" import serve_file %} {% macro print_analyze_db_task(task) %}

{{task.name()}}

Database
{{task.database}}
Image Count
{% if task.image_count %} {{ task.image_count }} {% else %} ? {% endif %}
Image Dimensions
{% if task.image_width and task.image_height and task.image_channels %} {{task.image_width}}x{{task.image_height}}x{{task.image_channels}} (Width x Height x Channels) {% else %} ? {% endif %}
{% if task.analyze_db_log_file %}
DB analysis log file
{{serve_file(task, task.analyze_db_log_file)}}
{% endif %}
{% endmacro %} {% block job_content %}

Job Information

Job Directory
{{job.dir()}}
Dataset size
{{job.disk_size_fmt()}}
{% for task in job.analyze_db_tasks() %}
{{ print_analyze_db_task(task) }}
{% endfor %} {% endblock %}