{# Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved. #} {% extends "job.html" %} {% 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 %}
{% endmacro %} {% block job_content %} {% for task in job.analyze_db_tasks() %}
{{ print_analyze_db_task(task) }}
{% endfor %} {% endblock %}