mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-04 00:16:14 +02:00
24 lines
742 B
HTML
24 lines
742 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Automatic reply{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block subtitle %}
|
|
{{ user }}
|
|
{% endblock %}
|
|
|
|
{% block box_content %}
|
|
<form class="form" method="post" role="form">
|
|
{{ form.hidden_tag() }}
|
|
{{ macros.form_field(form.reply_enabled,
|
|
onchange="if(this.checked){$('#reply_subject,#reply_body').removeAttr('readonly')}
|
|
else{$('#reply_subject,#reply_body').attr('readonly', '')}") }}
|
|
{{ macros.form_field(form.reply_subject,
|
|
**{("rw" if user.reply_enabled else "readonly"): ""}) }}
|
|
{{ macros.form_field(form.reply_body, rows=10,
|
|
**{("rw" if user.reply_enabled else "readonly"): ""}) }}
|
|
{{ macros.form_field(form.submit) }}
|
|
</form>
|
|
{% endblock %}
|