{% extends "@UVDeskCoreFramework/Templates/layout.html.twig" %} {% block title %} {% if app.request.get('id') %} {{ 'Edit Workflow' | trans }} {% else %} {{ 'Add Workflow' | trans }} {% endif %} {% endblock %} {% block internalcss %} @media(max-width: 767px) { #company-workflow > .steps { display: none; } } @media(max-width: 579px) { #company-workflow > h3 { margin-right: 80px; } #company-workflow > h3 > a { position: absolute; top: 0px; right: 10px; } } .has-error button.btn { border-color: #cc5965; } {% endblock %} {% block pageContent %}
{# Append Panel Aside #} {% set asideTemplate = 'Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\AsideTemplate' %} {% set asideSidebarReference = 'Webkul\\UVDesk\\CoreFrameworkBundle\\UIComponents\\Dashboard\\Panel\\Sidebars\\Productivity' %} {{ uvdesk_extensibles.getRegisteredComponent(asideTemplate).renderSidebar(asideSidebarReference) | raw }}
{% if app.request.get('id') is not empty %}

{{ 'Edit Workflow'|trans }}

{% else %}

{{ 'New Workflow'|trans }}

{% endif %}

{% if error.name is defined %}{{ error.name }}{% endif %}

{% if error.description is defined %}{{ error.description }}{% endif %}

{{ "An event automatically triggers to check conditions and perform a respective pre-defined set of actions"|trans }}
{{ 'Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions'|trans }}
{{ 'An action not only reduces the workload but also makes it quite easier for ticket automation'|trans }}
{# #}
{% endblock %} {% block footer %} {{ parent() }} {{ include('@UVDeskAutomation//Workflow//events.html.twig') }} {{ include('@UVDeskAutomation//Workflow//conditions.html.twig') }} {{ include('@UVDeskAutomation//Workflow//actions.html.twig') }} {% endblock %}