master
fefa4ka 10 years ago
parent 3cf0698320
commit 7b9bafdb45
  1. 8
      zsite/templates/form_template/order_modal.html

@ -7,7 +7,11 @@
<div class="forms" id="{{ instance.form_id }}"> <div class="forms" id="{{ instance.form_id }}">
{% if instance.title != instance.name %} {% if instance.title != instance.name %}
<h1 class="title">{{ instance.title }}</h1> <h1 class="title">{{ instance.title }}</h1>
<h2 class="title">{% trans 'Service' %} «{{ instance.name }}»</h2> {% if request.LANGUAGE_CODE == 'ru' %}
<h2 class="title">Услуги «{{ instance.name }}»</h2>
{% else %}
<h2 class="title">{{ instance.name }} Service</h2>
{% endif %}
{% else %} {% else %}
<h1 class="title">{{ instance.name }}</h1> <h1 class="title">{{ instance.name }}</h1>
{% endif %} {% endif %}
@ -101,7 +105,7 @@
{% if request.LANGUAGE_CODE == 'ru' %} {% if request.LANGUAGE_CODE == 'ru' %}
<p>Вы можете <em>обратить к нам с вопросом</em> или <em>заказать услугу</em> «{{ instance.name }}»</p> <p>Вы можете <em>обратить к нам с вопросом</em> или <em>заказать услугу</em> «{{ instance.name }}»</p>
{% else %} {% else %}
<p>We <em>give you free advice</em> or and <em>provide "{{ instance.name }}" service</p> <p>We <em>give you free advice</em> and provide "{{ instance.name }}" service</p>
{% endif %} {% endif %}
</div> </div>

Loading…
Cancel
Save