From ab07489f57a106304e93b0b749adfa91c8a4b368 Mon Sep 17 00:00:00 2001
From: Babak Alizadeh
نام:
- {{ bid.legalName }}
+ {% if bid.legalName is not empty %}{{ bid.legalName }}{% endif %}
شماره ثبت:
- {{ bid.shomaresabt }}
+ {% if bid.shomaresabt is not empty %}{{ bid.shomaresabt }}{% endif %}
شماره اقتصادی:
- {{ bid.codeeghtesadi }}
+ {% if bid.codeeghtesadi is not empty %}{{ bid.codeeghtesadi }}{% endif %}
تلفن / نمابر:
- {{ bid.tel }}
+ {% if bid.tel is not empty %}{{ bid.tel }}{% endif %}
کد پستی:
- {{ bid.postalcode }}
+ {% if bid.postalcode is not empty %}{{ bid.postalcode }}{% endif %}
آدرس:
- استان
- {{ bid.ostan }}، شهر
- {{ bid.shahrestan }}،
- {{ bid.address }}
+ {% if bid.ostan is not empty %}استان {{ bid.ostan }}{% endif %}{% if bid.shahrestan is not empty %}، شهر {{ bid.shahrestan }}{% endif %}{% if bid.address is not empty %}، {{ bid.address }}{% endif %}
@@ -78,27 +78,27 @@
شناسه ملی:
- {{ bid.shenasemeli }}
+ {% if bid.shenasemeli is not empty %}{{ bid.shenasemeli }}{% endif %}
@@ -106,17 +106,14 @@
@@ -138,34 +135,34 @@
نام:
{% if person.prelabel is not null %}{{ person.prelabel.label }}{% endif %}
- {{ person.nikename }}
+ {% if person.nikename is not empty %}{{ person.nikename }}{% endif %}
شناسه ملی: - {{ person.shenasemeli }} + {% if person.shenasemeli is not empty %}{{ person.shenasemeli }}{% endif %}
شماره ثبت: - {{ person.sabt }} + {% if person.sabt is not empty %}{{ person.sabt }}{% endif %}
شماره اقتصادی: - {{ person.codeeghtesadi }} + {% if person.codeeghtesadi is not empty %}{{ person.codeeghtesadi }}{% endif %}
تلفن / نمابر: - {{ person.tel }} + {% if person.tel is not empty %}{{ person.tel }}{% endif %}
کد پستی: - {{ person.postalcode }} + {% if person.postalcode is not empty %}{{ person.postalcode }}{% endif %}
آدرس: - استان - {{ person.ostan }}، شهر - {{ person.shahr }}، - {{ person.address }} + {% if person.ostan is not empty %}استان {{ person.ostan }}{% endif %}{% if person.shahr is not empty %}، شهر {{ person.shahr }}{% endif %}{% if person.address is not empty %}، {{ person.address }}{% endif %}