You are here

template-task-legend.html.twig in Maestro 8.2

<div id="maestro-legend">

<div class="legend-task legend-start"></div>
<div class="legend-information clearfix">
  <div class="legend-information-title">{{ 'Start Task' | t }}</div>
  <div class="legend-information-explanation">{{ 'Undeletable and created by Maestro. Newly spawned processes always begin with the Start task.' | t }}</div>
</div>

<div class="legend-task legend-end"></div>
<div class="legend-information clearfix">
  <div class="legend-information-title">{{ 'End Task' | t }}</div>
  <div class="legend-information-explanation">{{ 'Each worklow must have at least one End task. There can be multiple End tasks. Ends the process in the engine.' | t }}</div>
</div>

<div class="legend-task legend-interactive"></div>
<div class="legend-information clearfix">
  <div class="legend-information-title">{{ 'Interactive Task' | t }}</div>
  <div class="legend-information-explanation">{{ 'Tasks that are human executable. Requires human intervention to be completed to allow the workflow to continue.' | t }}</div>
</div>

<div class="legend-task legend-logical"></div>
<div class="legend-information clearfix">
  <div class="legend-information-title">{{ 'Logical Engine Task' | t }}</div>
  <div class="legend-information-explanation">{{ 'Tasks executed by the engine to OR, AND or set variables in the workflow.' | t }}</div>
</div>

<div class="legend-task legend-batch"></div>
<div class="legend-information clearfix">
  <div class="legend-information-title">{{ 'Batch Engine Task' | t }}</div>
  <div class="legend-information-explanation">{{ 'Task that lets the Maestro Engine execute custom code functions.' | t }}</div>
</div>


</div>

File

modules/maestro_template_builder/templates/template-task-legend.html.twig
View source
  1. <div id="maestro-legend">
  2. <div class="legend-task legend-start"></div>
  3. <div class="legend-information clearfix">
  4. <div class="legend-information-title">{{ 'Start Task' | t }}</div>
  5. <div class="legend-information-explanation">{{ 'Undeletable and created by Maestro. Newly spawned processes always begin with the Start task.' | t }}</div>
  6. </div>
  7. <div class="legend-task legend-end"></div>
  8. <div class="legend-information clearfix">
  9. <div class="legend-information-title">{{ 'End Task' | t }}</div>
  10. <div class="legend-information-explanation">{{ 'Each worklow must have at least one End task. There can be multiple End tasks. Ends the process in the engine.' | t }}</div>
  11. </div>
  12. <div class="legend-task legend-interactive"></div>
  13. <div class="legend-information clearfix">
  14. <div class="legend-information-title">{{ 'Interactive Task' | t }}</div>
  15. <div class="legend-information-explanation">{{ 'Tasks that are human executable. Requires human intervention to be completed to allow the workflow to continue.' | t }}</div>
  16. </div>
  17. <div class="legend-task legend-logical"></div>
  18. <div class="legend-information clearfix">
  19. <div class="legend-information-title">{{ 'Logical Engine Task' | t }}</div>
  20. <div class="legend-information-explanation">{{ 'Tasks executed by the engine to OR, AND or set variables in the workflow.' | t }}</div>
  21. </div>
  22. <div class="legend-task legend-batch"></div>
  23. <div class="legend-information clearfix">
  24. <div class="legend-information-title">{{ 'Batch Engine Task' | t }}</div>
  25. <div class="legend-information-explanation">{{ 'Task that lets the Maestro Engine execute custom code functions.' | t }}</div>
  26. </div>
  27. </div>