{% for proc in available_processors %}
» {{ proc.text }}
Identifier | {{ proc.identifier }} |
Related model | {{ proc.model}} |
User exclusive | {{ proc.user_exclusive }} |
{% if in_admin %}
{% execute_kolibri_admin proc %}
{% else %}
{% execute_kolibri proc %}
{% endif %}
|
{% endfor %}
Defined workflows
{% for wf in available_workflows %}
» {{ wf.title }}
Identifier | {{ wf.identifier }} |
Related model | {{ wf.model}} |
User exclusive | {{ wf.user_exclusive }} |
Steps |
{% for step in wf.steps %}
- {{ step.processor.text }}
{% if step.exceptions %}
Except:
{% for ex in step.exceptions %}
- on {{ ex.0 }} do {{ ex.1.processor.text|lower }}
{% endfor %}
{% endif %}
{% endfor %}
|
{% endfor %}