diff --git a/system/templates/account.create_character.html.twig b/system/templates/account.create_character.html.twig index 9b45b5ffd..f6c49ac31 100644 --- a/system/templates/account.create_character.html.twig +++ b/system/templates/account.create_character.html.twig @@ -330,31 +330,36 @@ In any case the name must not violate the naming conventions stated in the {% endif %} - - {% if config.character_towns|length > 1 %} - - -
- - - - - - - {% for town_id in config.character_towns %} - - {% endfor %} - - -
Select your town
- - -
-
- - +{% if config.character_towns|length > 1 %} + + +
+ + + + + + + {% for town_id in config.character_towns %} + + {% endfor %} + + +
Select your town
+ {% set town_name = config.towns[town_id] %} + {{ town_id }}: {{ town_name }} + {% if town_name is defined %} + + + {% else %} + {% endif %} +
+
+ + +{% endif %}