mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 05:02:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends request.content_only|yesno:"empty.html,base.html" %}
 | 
						|
 | 
						|
{% load crispy_forms_filters i18n %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <form method="post" enctype="multipart/form-data">
 | 
						|
        <div id="form-content">
 | 
						|
            {% csrf_token %}
 | 
						|
            {{ form|crispy }}
 | 
						|
        </div>
 | 
						|
        <button class="btn btn-primary" type="submit">{% trans "Update pool" %}</button>
 | 
						|
    </form>
 | 
						|
{% endblock content %}
 |