{% macro print_properties(properties) %} {% if properties %} {% for label, value in properties.items()|sort %} {% endfor %}
Property Value
{{ label }} {{ value }}
{% else %}

No properties to be printed.

{% endif %} {% endmacro %} PyRoll Report

PyRoll Report

Units

{% for unit, properties, plots in unit_infos %}

{% if unit.label %}{{ unit.label }}{% else %}{{unit.__class__.__name__}}{% endif %}

{{ print_properties(properties) }}
{% for plot in plots %} {{ plot }} {% else %}

No plots available.

{% endfor %}
{% else %}

No units defined.

{% endfor %}

Sequence

Properties

{{ print_properties(sequence_properties) }}

Plots

{% for plot in sequence_plots %} {{ plot }} {% else %}

No plots available.

{% endfor %}