diff --git a/erpnext/regional/germany/address_template.html b/erpnext/regional/germany/address_template.html
index 0df786713c9..7fa4c32612a 100644
--- a/erpnext/regional/germany/address_template.html
+++ b/erpnext/regional/germany/address_template.html
@@ -1,8 +1,8 @@
{{ address_line1 }}
{% if address_line2 %}{{ address_line2 }}
{% endif -%}
-{{ pincode }} {{ city }}
-{% if country %}{{ country }}
{% endif -%}
-
-{% if phone %}Tel: {{ phone }}
{% endif -%}
-{% if fax %}Fax: {{ fax }}
{% endif -%}
-{% if email_id %}E-Mail: {{ email_id }}
{% endif -%}
+{% if country in ["Germany", "Deutschland"] %}
+ {{ pincode }} {{ city }}
+{% else %}
+ {{ pincode }} {{ city | upper }}
+ {{ country | upper }}
+{% endif %}