mail/app/templates/settings/index.html
deeily 5024bf9a8d init: full mail stack — phases 0..8 (web client, admin, IMAP/SMTP,
sieve, search, sessions, dramatiq, deploy/install, ELK, monitoring)
2026-04-29 16:30:43 +03:00

33 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'layout/base.html' %}
{% block title %}Настройки{% endblock %}
{% block body %}
<div class="content" style="max-width:720px">
<div class="card">
<div class="card-head"><div class="card-title">Настройки приложения</div></div>
<div class="card-body">
<p style="color:var(--color-text-secondary);margin-bottom:16px">
Значения берутся из <code>.env</code>. Редактирование через UI появится в Фазе 7.
</p>
<table class="tbl">
<tbody>
{% for k, v in settings.items() %}
<tr>
<td style="width:40%;color:var(--color-text-secondary);font-family:monospace;font-size:12px">{{ k }}</td>
<td style="font-family:monospace;font-size:12px">{{ v if v != '' else '—' }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div class="card">
<div class="card-head"><div class="card-title">Отложенная отправка</div></div>
<div class="card-body" style="color:var(--color-text-secondary)">
Все исходящие письма уходят через <strong>{{ settings.send_defer_seconds }} сек</strong>
после нажатия «Отправить». В это окно вы можете отменить отправку.
</div>
</div>
</div>
{% endblock %}