We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65cecab commit b6d64fcCopy full SHA for b6d64fc
webapp/templates/team/languages.html.twig
@@ -12,7 +12,12 @@
12
<div class="card">
13
<div class="card-body">
14
<h2 class="card-title">
15
- <code>{{ lang.langid }}</code>
+ <code>{{ lang.name }}</code>
16
+ <span style="font-size:50%; font-weight: normal;"> with
17
+ extension{% if lang.extensions|length > 1 %}s{% endif %}:
18
+ {% for ext in lang.extensions %}
19
+ <code>.{{ ext }}</code>{% if not loop.last %}, {% endif %}
20
+ {% endfor %}
21
</h2>
22
</div>
23
{% if lang.compilerVersion and lang.compilerVersionCommand %}
0 commit comments