23 lines
		
	
	
		
			531 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			531 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block title %}{{ title }}{% endblock title %}
 | |
| 
 | |
| {% block content %}
 | |
|     <form method="post" enctype="multipart/form-data">
 | |
|         <table class="mx-auto">
 | |
|         {% csrf_token %}
 | |
| 
 | |
|         {{ form.as_table }}
 | |
|         <tr>
 | |
|             <td></td>
 | |
|             <td><input type="submit" value="Submit"/></td>
 | |
|         </tr>
 | |
|         </table>
 | |
|     </form>
 | |
| {% endblock content %}
 | |
| 
 | |
| {% block scripts %}
 | |
| {% load static %}
 | |
| <script type="module" src="{% static 'js/add_edition.js' %}"></script>
 | |
| {% endblock scripts %}
 |