{% extends "team/base.html.twig" %} {% block title %}Allowed Languages{% endblock %} {% block content %}

Allowed Languages

{% for lang in languages %}

{{ lang.name }} with extension{% if lang.extensions|length > 1 %}s{% endif %}: {% for ext in lang.extensions %} .{{ ext }}{% if not loop.last %}, {% endif %} {% endfor %}

{% if lang.compilerVersion and lang.compilerVersionCommand %}
$ {{ lang.compilerVersionCommand }}
{{ lang.compilerVersion }}
{% endif %} {% if lang.runnerVersion and lang.runnerVersionCommand %}
$ {{ lang.runnerVersionCommand }}
{{ lang.runnerVersion }}
{% endif %}
{% endfor %}
{% endblock %}