mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
19 lines
742 B
HTML
19 lines
742 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% trans %}New domain{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block box_content %}
|
|
<form class="form" method="post" role="form">
|
|
{{ form.hidden_tag() }}
|
|
{{ macros.form_field(form.name) }}
|
|
{{ macros.form_fields((form.max_users, form.max_aliases)) }}
|
|
{{ macros.form_field(form.max_quota_bytes, step=1000000000, max=50000000000,
|
|
prepend='<span class="input-group-addon"><span id="quota">'+((form.max_quota_bytes.data//1000000000).__str__() if form.max_quota_bytes.data else '∞')+'</span> GiB</span>',
|
|
oninput='$("#quota").text(this.value == 0 ? "∞" : this.value/1000000000);') }}
|
|
{{ macros.form_field(form.comment) }}
|
|
{{ macros.form_field(form.submit) }}
|
|
</form>
|
|
{% endblock %}
|