All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			375 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			375 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><input type="submit" value="Submit"/></td>
 | |
|         </tr>
 | |
|         </table>
 | |
|     </form>
 | |
| {% endblock content %} |