mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-05-16 21:32:46 +00:00
20 lines
437 B
HTML
20 lines
437 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block extracss %}
|
|
<link rel="manifest" href="{% static "chat.webmanifest" %}">
|
|
{% endblock %}
|
|
|
|
{% block content-title %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "chat/content.html" %}
|
|
{% endblock %}
|
|
|
|
{% block extrajavascript %}
|
|
{# This script contains all data for the chat management #}
|
|
<script src="{% static 'chat.js' %}"></script>
|
|
{% endblock %}
|