mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-03 11:08:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			642 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			642 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load i18n crispy_forms_filters django_tables2 %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <div class="alert alert-warning">
 | 
						|
        {% trans "Templates for syntheses are available here:" %}
 | 
						|
        <a href="{% static "Fiche synthèse.pdf" %}">PDF</a> -- <a href="{% static "Fiche synthèse.tex" %}">TEX</a>
 | 
						|
    </div>
 | 
						|
 | 
						|
    {% if form %}
 | 
						|
        <form method="post" enctype="multipart/form-data">
 | 
						|
            {% csrf_token %}
 | 
						|
            {{ form|crispy }}
 | 
						|
            <button class="btn btn-block btn-success">{% trans "Submit" %}</button>
 | 
						|
        </form>
 | 
						|
        <hr>
 | 
						|
    {% endif %}
 | 
						|
    {% render_table table %}
 | 
						|
{% endblock %}
 |