mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 15:22:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load static %}
 | 
						|
{% load i18n %}
 | 
						|
{% load pipeline %}
 | 
						|
 | 
						|
{% block extracss %}
 | 
						|
    {# Webmanifest PWA permettant l'installation de l'application sur un écran d'accueil, pour navigateurs supportés #}
 | 
						|
    {% if TFJM.APP == "TFJM" %}
 | 
						|
        <link rel="manifest" href="{% static "tfjm/chat_tfjm.webmanifest" %}">
 | 
						|
    {% elif TFJM.APP == "ETEAM" %}
 | 
						|
        <link rel="manifest" href="{% static "tfjm/chat_eteam.webmanifest" %}">
 | 
						|
    {% endif %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content-title %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    {% include "chat/content.html" %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block extrajavascript %}
 | 
						|
    {# Ce script contient toutes les données pour la gestion du chat. #}
 | 
						|
    {% javascript 'chat' %}
 | 
						|
{% endblock %}
 |