{% if app.user.roles[0] == "ROLE_EDITOR" %} {% set extend = "::layout.html.twig" %} {% elseif app.user.roles[0] == "ROLE_AUTHOR" %} {% set extend = "::author.html.twig" %} {% elseif app.user.roles[0] == "ROLE_REVIEWER" %} {% set extend = "::reveiwer.html.twig" %} {% endif %} {% extends extend %} {% block title %}::Approving Article::{% endblock %} {% block body %}

Approving Article

{{ include("PafcicOnlinePafcicBundle:Articles:form_edit_editor.html.twig") }}
{% endblock %} {% block javascripts %} {{ parent() }} {% if decision == 0 %} {% endif %} {% if articles.status != null and app.user.roles[0] !="ROLE_EDITOR" %} {% endif %} {% endblock %}