You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.7 KiB
59 lines
2.7 KiB
{% extends 'base_catalog.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load thumbnail %}
|
|
{% load template_filters %}
|
|
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
{% if object.profile.country %}
|
|
<a href="/translators/country/{{ object.profile.country.url }}/">{{ object.profile.country.name }}</a>
|
|
{% if object.profile.city %}
|
|
<a href="/translators/city/{{ object.profile.city.url }}/">{{ object.profile.city.name }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<strong>{{ obect.get_full_name }}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
<div class="m-article cl-news blog_block">
|
|
<div class="profile_top">
|
|
<div class="profile_top_pic">
|
|
{% if object.profile.avatar %}
|
|
{% thumbnail object.profile.avatar "100x100" format="PNG" as im %}
|
|
<img class="user-avatar" src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}"/>
|
|
{% endthumbnail %}
|
|
{% else %}
|
|
<img class="user-avatar" src="{% static 'client/img/no-userpic-big.gif' %}" width="100" height="100"/>
|
|
{% endif %}
|
|
</div>
|
|
<div class="profile_top_left_1">
|
|
<h1>{{ object.get_full_name }}</h1>
|
|
<p><span class="icon1"></span><b>{{ object.translator.languages }}</b></p>
|
|
|
|
<p>{% ifequal object.translator.gender 'female' %}<span class="icon2"></span>{% endifequal %}{{ object.translator.birth|how_many_years }} лет{% if object.translator.car %}<span class="icon3"></span>{% trans "Есть личный автомобиль" %}</p>{% endif %}
|
|
</div>
|
|
<div class="profile_top_right_1">
|
|
{% if object.profile.country %}
|
|
<p><span class="icon4"></span><a href="/translators/country/{{ object.profile.country.url }}/" title="">{{ object.profile.country.name }}</a>
|
|
{% if object.profile.city %}, <a href="/translators/city/{{ object.profile.city.url }}/" title="">{{ object.profile.city.name }}</a>{% endif %}</p>
|
|
{% endif %}
|
|
{% if object.translator.native_language %}
|
|
<p><span class="icon5"></span>{% trans 'Родной язык' %} — {{ object.translator.native_language }}</p>
|
|
{% endif %}
|
|
</div>
|
|
<div class="clear"></div>
|
|
|
|
<hr>
|
|
{% if object.translator.education %}
|
|
<h3>{% trans 'Образование' %}:</h3>
|
|
{{ object.translator.education }}
|
|
<hr>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|