50 lines
2.2 KiB
HTML
50 lines
2.2 KiB
HTML
{% extends 'programmer/base.html' %}
|
||
{% load static %}
|
||
{% load django_bootstrap5 %}
|
||
|
||
{% block content %}
|
||
<div class="page-header">
|
||
<h1 class="page-title">{{ title }}</h1>
|
||
<p class="page-subtitle">Официальная информация о компании</p>
|
||
</div>
|
||
|
||
<div class="content-card">
|
||
<div class="about-section">
|
||
<h3>📄 Реквизиты</h3>
|
||
|
||
<div style="background: var(--bg-secondary); padding: 2rem; border-radius: var(--radius-lg);">
|
||
<p><strong>Индивидуальный предприниматель</strong><br>
|
||
Сердюк Николай Александрович</p>
|
||
|
||
<p><strong>ИНН:</strong> {{ RQ_INN }}</p>
|
||
<p><strong>ОГРНИП:</strong> {{ RQ_OGRNIP }}</p>
|
||
|
||
<p><strong>Юридический адрес:</strong><br>
|
||
{{ RQ_ADRES }}</p>
|
||
|
||
<p><strong>Почтовый адрес:</strong><br>
|
||
{{ RQ_ADRES }}</p>
|
||
|
||
<!-- Спойлер с банковскими реквизитами -->
|
||
<details style="margin-top: 1.5rem;">
|
||
<summary style="cursor: pointer; font-weight: bold; color: var(--primary);">
|
||
🔒 Банковские реквизиты (нажмите, чтобы показать)
|
||
</summary>
|
||
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--border-light);">
|
||
<p><strong>Расчётный счёт:</strong> {{ RQ_ECENT }}</p>
|
||
<p><strong>Банк:</strong> {{ RQ_BANK }}</p>
|
||
<p><strong>БИК:</strong> {{ RQ_BIK }}</p>
|
||
<p><strong>Корреспондентский счёт:</strong> {{ RQ_KOR_ECENT }}</p>
|
||
</div>
|
||
</details>
|
||
|
||
<p style="margin-top: 1rem;"><strong>Контактный телефон:</strong> {{ CONTACT_PHONE }}</p>
|
||
<p><strong>Электронная почта:</strong> {{ CONTACT_EMAIL }}</p>
|
||
</div>
|
||
|
||
<p class="mt-3 text-muted" style="color: var(--text-light);">
|
||
Актуально на {% now "d.m.Y" %}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
{% endblock %} |