14 lines
365 B
HTML
14 lines
365 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div class="alert alert-warning">
|
|
{% blocktrans trimmed %}
|
|
The chat feature is now out of usage. If you feel that having a chat
|
|
feature between participants is important, for example to build a
|
|
team, please contact us.
|
|
{% endblocktrans %}
|
|
</div>
|
|
{% endblock %}
|