Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.32 KB | None | 0 0
  1.         <p>
  2.             «Здравствуйте!<br><br>
  3.             Хочу снять{#
  4.                  #}{% if flat and flat.building_type == 'cottage' %} коттедж{% elif flat and flat.building_type == 'room' %} комнату{% else %} квартиру{% endif %}{#
  5.             #}{% if address %} по адресу {{ address }}{% endif %}.{#
  6.             #}{% if places_formated %}{#
  7.                 #} Для {{ places_formated }}{#
  8.             #}{% endif %}{#
  9.             #}{% if arrival == departure %}{{ dates_formated }}.{% else %} свободно?{% endif %}»
  10.         </p>
  11.     {% endif %}
  12.     <p>
  13.         {% if flat %}
  14.             <a href="{{ flat.get_absolute_url() }}">{{ flat.formatted_address }}</a>
  15.         {% endif %}<br>
  16.         {% if arrival %}{% if departure and arrival.month == departure.month and arrival.day == departure.day %}{% elif departure and arrival.month == departure.month and not arrival.day == departure.day %}{{ arrival|strftime(format='%d') }}{% else %}{{ arrival|strftime(format='%d %B') }}{% endif %}{% endif %}{% if departure %}{{ departure|strftime(format='%d %B') }}{% endif %}<br>
  17.         {% if place %}{{ place }} {{ place|choose_plural(['человек', 'человека', 'человек']) }}<br>{% endif %}
  18.         {% if contacts_phone %}{{ contacts_phone }}{% endif %}
  19.     </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement