diff --git a/website/web/templates/vulnerability_templates.html b/website/web/templates/vulnerability_templates.html
index d9c0adb..668e9da 100644
--- a/website/web/templates/vulnerability_templates.html
+++ b/website/web/templates/vulnerability_templates.html
@@ -211,13 +211,18 @@
- {% if vulnerability_data['containers']['cna']['title'] %}
+ {% if vulnerability_data['containers']['cna']['descriptions'] %}
+ {% set languages = ['eng', 'en'] %}
-
Summary
{{vulnerability_data['containers']['cna']['title']}}
+ {% for item in vulnerability_data['containers']['cna']['descriptions'] %}
+ {% if item['lang'] in languages %}
+
Summary
{{ item['value'] }}
+ {% endif %}
+ {% endfor %}
- {% else %}
+ {% elif vulnerability_data['containers']['cna']['title'] %}
-
Summary
{{vulnerability_data['containers']['cna']['descriptions'][0]['value']}}
+
Summary
{{vulnerability_data['containers']['cna']['title']}}
{% endif %}
{% if 'meta' in vulnerability_data and 'nvd' in vulnerability_data['meta'] %}
@@ -717,7 +722,7 @@
{{ vulnerability_data['gsd']['osvSchema']['details'] }}
{% else %}
{% set namespaces = ['cisa.gov', 'cve.org', 'gitlab.com', 'nvd.nist.gov'] %}
- {% set languages = ['eng'] %}
+ {% set languages = ['eng', 'en'] %}
{% for namespace in namespaces %}
{% if vulnerability_data['namespaces'].get(namespace, false) %}
{% if 'description' in vulnerability_data['namespaces'][namespace] %}