{% macro module_states() %} {% from "_helpers.html" import build_state_text %}
Possible module states:
{% for state in [ "pending", "succeeded", "failed", ]%}
{{ build_state_text(state) }} - {{state|build_state_description}}
{% endfor %}
{% endmacro %}