{% extends "base.html" %} {% load static %} {% load tailwind_forms %} {% load i18n %} {% block title %}{% translate "Messaging Service" %} · {{ project.name }} · {{ site_title }}{% endblock %} {% block content %}
{% csrf_token %} {% if messages %}
    {% for message in messages %} {# if we introduce different levels we can use{% message.level == DEFAULT_MESSAGE_LEVELS.SUCCESS %} #}
  • {{ message }}
  • {% endfor %}
{% endif %}

{% translate "Messaging Service" %} · {{ project.name }}

{% for field in form %} {% tailwind_formfield field %} {% endfor %} {% for config_form_kind, config_form in config_forms.items %}
{% for field in config_form %} {% tailwind_formfield field %} {% endfor %}
{% endfor %} Cancel
{% endblock %} {% block extra_js %} {% endblock %}