mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 06:09:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			591 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			591 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends request.content_only|yesno:"empty.html,base.html" %}
 | |
| 
 | |
| {% load crispy_forms_filters i18n %}
 | |
| 
 | |
| {% block content %}
 | |
|     <form method="post">
 | |
|         <div id="form-content">
 | |
|             <h4>{% trans "Notes of" %} {{ note.jury }}</h4>
 | |
|             <h5>{% trans "Defense of" %} {{ note.passage.defender.team.trigram }}, {% trans "Pb." %} {{ note.passage.solution_number }}</h5>
 | |
|             <hr>
 | |
|             {% csrf_token %}
 | |
|             {{ form|crispy }}
 | |
|         </div>
 | |
|         <button class="btn btn-primary" type="submit">{% trans "Update" %}</button>
 | |
|     </form>
 | |
| {% endblock content %}
 |