mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
34df8b3168
- fixed copy of qemu-arm-static for alpine - added 'set -eu' safeguard - silenced npm update notification - added color to webpack call - changed Admin-LTE default blue (core/admin/Dockerfile) - AdminLTE 3 style tweaks (core/admin/assets/app.css) (core/admin/mailu/ui/templates/base.html) (core/admin/mailu/ui/templates/sidebar.html) - localized datatables (core/admin/Dockerfile) (core/admin/assets/app.js) (core/admin/package.json) - moved external javascript code to vendor.js (core/admin/assets/app.js) (core/admin/assets/vendor.js) (core/admin/webpack.config.js) - added mailu logo (core/admin/assets/app.js) (core/admin/assets/app.css) (core/admin/assets/mailu.png) - moved all inline javascript to app.js (core/admin/assets/app.js) (core/admin/mailu/ui/templates/domain/create.html) (core/admin/mailu/ui/templates/user/create.html) - added iframe display of rspamd page (core/admin/assets/app.js) (core/admin/mailu/ui/views/base.py) (core/admin/mailu/ui/templates/sidebar.html) (core/admin/mailu/ui/templates/antispam.html) - updated language-selector to display full language names and use post (core/admin/assets/app.js) (core/admin/mailu/__init__.py) (core/admin/mailu/utils.py) (core/admin/mailu/ui/views/languages.py) - added fieldset to group and en/disable input fields (core/admin/assets/app.js) (core/admin/mailu/ui/templates/macros.html) (core/admin/mailu/ui/templates/user/settings.html) (core/admin/mailu/ui/templates/user/reply.html) - added clipboard copy buttons (core/admin/assets/app.js) (core/admin/assets/vendor.js) (core/admin/mailu/ui/templates/macros.html) (core/admin/mailu/ui/templates/domain/details.html) - cleaned external javascript imports (core/admin/assets/vendor.js) - pre-split first hostname for further use (core/admin/mailu/__init__.py) (core/admin/mailu/models.py) (core/admin/mailu/ui/templates/client.html) (core/admin/mailu/ui/templates/domain/signup.html) - cache dns_* properties of domain object (immutable during runtime) (core/admin/mailu/models.py) (core/admin/mailu/ui/templates/domain/details.html) - fixed and splitted dns_dkim property of domain object (space missing) - added autoconfig and tlsa properties to domain object (core/admin/mailu/models.py) - suppressed extra vertical spacing in jinja2 templates - improved accessibility for screen reader (core/admin/mailu/ui/templates/**.html) - deleted unused/broken /user/forward route (core/admin/mailu/ui/templates/user/forward.html) (core/admin/mailu/ui/views/users.py) - updated gunicorn to 20.1.0 to get rid of buffering error at startup (core/admin/requirements-prod.txt) - switched webpack to production mode (core/admin/webpack.config.js) - added css and javascript minimization - added pre-compression of assets (gzip) (core/admin/webpack.config.js) (core/admin/package.json) - removed obsolte dependencies - switched from node-sass to dart-sass (core/admin/package.json) - changed startup cleaning message from error to info (core/admin/mailu/utils.py) - move client config to "my account" section when logged in (core/admin/mailu/ui/templates/sidebar.html)
128 lines
3.9 KiB
HTML
128 lines
3.9 KiB
HTML
{%- macro form_errors(form) %}
|
|
{%- if form.errors %}
|
|
{%- for fieldname, errors in form.errors.items() %}
|
|
{%- if bootstrap_is_hidden_field(form[fieldname]) %}
|
|
{%- for error in errors %}
|
|
<p class="error">{{error}}</p>
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro form_field_errors(field) %}
|
|
{%- if field.errors %}
|
|
{%- for error in field.errors %}
|
|
<p class="help-block inline">{{ error }}</p>
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro form_fields(fields, prepend='', append='', label=True) %}
|
|
{%- set width = (12 / fields|length)|int %}
|
|
<div class="form-group">
|
|
<div class="row">
|
|
{%- for field in fields %}
|
|
<div class="col-lg-{{ width }} col-xs-12 {{ 'has-error' if field.errors else '' }}">
|
|
{{ form_individual_field(field, prepend=prepend, append=append, label=label, **kwargs) }}
|
|
</div>
|
|
{%- endfor %}
|
|
</div>
|
|
</div>
|
|
{%- endmacro %}
|
|
|
|
{%- macro form_individual_field(field, prepend='', append='', label=True, class_="") %}
|
|
{%- if field.type == "BooleanField" %}
|
|
{{ field(**kwargs) }}<span> </span>{{ field.label if label else '' }}
|
|
{%- else %}
|
|
{{ field.label if label else '' }}{{ form_field_errors(field) }}
|
|
{%- if prepend %}<div class="input-group-prepend">{%- elif append %}<div class="input-group-append">{%- endif %}
|
|
{{ prepend|safe }}{{ field(class_=("form-control " + class_) if class_ else "form-control", **kwargs) }}{{ append|safe }}
|
|
{%- if prepend or append %}</div>{%- endif %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro form_field(field) %}
|
|
{%- if field.type == 'SubmitField' %}
|
|
{{- form_fields((field,), label=False, class="btn btn-default", **kwargs) }}
|
|
{%- else %}
|
|
{{- form_fields((field,), **kwargs) }}
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro form(form) %}
|
|
<form class="form" method="post" role="form">
|
|
{{ form.hidden_tag() }}
|
|
{%- for field in form %}
|
|
{%- if bootstrap_is_hidden_field(field) %}
|
|
{{ field() }}
|
|
{%- else %}
|
|
{{ form_field(field) }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
</form>
|
|
{%- endmacro %}
|
|
|
|
{%- macro card(title=None, theme="primary", header=True) %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card card-outline card-{{ theme }}">
|
|
{%- if header %}
|
|
<div class="card-header border-0">
|
|
{%- if title %}
|
|
<h3 class="card-title">{{ title }}</h3>
|
|
{%- endif %}
|
|
</div>
|
|
{%- endif %}
|
|
<div class="card-body">
|
|
{{- caller() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{%- endmacro %}
|
|
|
|
{%- macro table(title=None, theme="primary", datatable=True) %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card card-outline card-{{ theme }}">
|
|
{%- if title %}
|
|
<div class="card-header border-0">
|
|
<h3 class="card-title">{{ title }}</h3>
|
|
</div>
|
|
{%- endif %}
|
|
<div class="card-body">
|
|
<table class="table table-bordered{% if datatable %} dataTable{% endif %}">
|
|
{{- caller() }}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{%- endmacro %}
|
|
|
|
{%- macro fieldset(title=None, field=None, enabled=None, fields=None) %}
|
|
{%- if field or title %}
|
|
<fieldset{% if not enabled %} disabled{% endif %}>
|
|
{%- if field %}
|
|
<legend>{{ form_individual_field(field) }}</legend>
|
|
{%- else %}
|
|
<legend>{{ title }}</legend>
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{{- caller() }}
|
|
{%- if fields %}
|
|
{%- set kwargs = {"enabled" if enabled else "disabled": ""} %}
|
|
{%- for field in fields %}
|
|
{{ form_field(field, **kwargs) }}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
</fieldset>
|
|
{%- endmacro %}
|
|
|
|
{%- macro clip(target, title=_("copy to clipboard"), icon="copy", color="primary", action="copy") %}
|
|
<button class="btn btn-{{ color }} btn-xs btn-clip float-right ml-2 mt-1" data-clipboard-action="{{ action }}" data-clipboard-target="#{{ target }}">
|
|
<i class="fas fa-{{ icon }}" title="{{ title }}" aria-expanded="false"></i><span class="sr-only">{{ title }}</span>
|
|
</button>
|
|
{%- endmacro %}
|