diff --git a/resources/ui/templates/factiontemplate_EN.j2 b/resources/ui/templates/factiontemplate_EN.j2
index 649dcefb..1b6660e7 100644
--- a/resources/ui/templates/factiontemplate_EN.j2
+++ b/resources/ui/templates/factiontemplate_EN.j2
@@ -16,7 +16,13 @@
Frontlines vehicles:
{% for vehicle in faction.frontline_units %}
-- {{vehicle.id}}
+-
+{% if vehicle.name is not none %}
+ {{ vehicle.name }}
+{% else %}
+ {{ vehicle.id }}
+{%endif %}
+
{% endfor %}
@@ -24,7 +30,13 @@
Artillery units:
{% for arty in faction.artillery_units %}
-- {{arty.id}}
+-
+{% if arty.name is not none %}
+ {{ arty.name }}
+{% else %}
+ {{ arty.id }}
+{%endif %}
+
{% endfor %}