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.
87 lines
3.4 KiB
87 lines
3.4 KiB
{% load my_tags %}
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: Arial;
|
|
src: url("{% fonts_root %}arial.ttf");
|
|
}
|
|
body { font-family: Arial; font-size: large; }
|
|
.block { margin: 20px 0; }
|
|
</style>
|
|
<body>
|
|
<h1>Реквизиты</h1>
|
|
|
|
<hr />
|
|
|
|
<h2>
|
|
{% if profile.logo and filters.show_logo %}
|
|
<img src='{{ profile.logo.path }}' alt='logo' />
|
|
{% endif %}
|
|
{{ profile.get_company_name }}</h2>
|
|
|
|
|
|
{% if filters.show_profile_type %}
|
|
<div class="block">
|
|
{% if profile.is_org %}
|
|
{% if filters.show_full_name %}Полное название организации: {{ profile.full_name }}<br />{% endif %}
|
|
{% endif %}
|
|
|
|
{% if filters.show_inn %}ИНН: {{ profile.inn }}<br />{% endif %}
|
|
|
|
{% if profile.is_org %}
|
|
{% if filters.show_kpp %}КПП: {{ profile.kpp }}<br />{% endif %}
|
|
{% endif %}
|
|
|
|
{% if filters.show_ogrn %}
|
|
{% if profile.is_ip %}ОГРНИП{% else %}ОГРН{% endif %}: {{ profile.ogrn }}<br />
|
|
{% endif %}
|
|
|
|
{% if filters.show_okpo %}ОКПО: {{ profile.okpo }}<br />{% endif %}
|
|
|
|
{% if profile.is_ip %}
|
|
{% if filters.show_svid_gos_reg %}Свид-во о гос. регистрации: {{ profile.svid_gos_reg }}<br />{% endif %}
|
|
{% if filters.show_ip_reg_date %}Дата регистрации ИП: {{ profile.ip_reg_date }}<br />{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if profile.is_org %}
|
|
{% if filters.show_org_boss_title_and_fio %}
|
|
<div class="block">
|
|
{% if profile.boss_title %}{{ profile.boss_title }}: {% endif %}{{ profile.get_boss_fio }}<br />
|
|
{% if filters.show_na_osnovanii %}Действует на основании {{ profile.na_osnovanii }}<br />{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if filters.show_glavbuh %}
|
|
<div class="block">
|
|
Главный бухгалтер: {{ profile.get_glavbuh_fio }}<br />
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if filters.show_bank_account and account %}
|
|
<div class="block">
|
|
БИК: {{ account.bik }}<br />
|
|
Банк: {{ account.name }}, {{ account.address }}<br />
|
|
К/с: {{ account.korr_account }}<br />
|
|
Р/с: {{ account.account }}<br />
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if filters.show_contact_info %}
|
|
<div class="block">
|
|
{% if filters.show_address %}Фактический адрес: {{ profile.address }}<br />{% endif %}
|
|
{% if filters.show_jur_address %}Юридический адрес: {{ profile.jur_address }}<br />{% endif %}
|
|
{% if filters.show_real_address %}Почтовый адрес: {{ profile.real_address }}<br />{% endif %}
|
|
|
|
{% if filters.show_phone %}Телефон: {{ profile.get_full_phone }}<br />{% endif %}
|
|
{% if filters.show_fax %}Факс: {{ profile.get_full_fax }}<br />{% endif %}
|
|
{% if filters.show_email %}Электронная почта: {{ profile.email }}<br />{% endif %}
|
|
{% if filters.show_site %}Сайт: {{ profile.site }}<br />{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|
|
|