mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
17 lines
404 B
HTML
17 lines
404 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
{%- block title -%}
|
|
{{ _('Notifications') }}
|
|
{%- endblock -%}
|
|
{% block content %}
|
|
|
|
<h1>{{ _('Notifications') }}</h1>
|
|
|
|
<form action="" method="POST">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field_with_errors(form.newsletter_enabled, ri="switch") }}
|
|
{{ render_field(form.submit) }}
|
|
</form>
|
|
|
|
{% endblock %}
|