All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			* ignore English articles when sorting names * added a new sort_name field that gets automatically created * automatically fill certain values in forms: * new game: name and sort name after typing * new edition: name and sort name when selecting game * new purchase: platform when selecting edition
		
			
				
	
	
		
			25 lines
		
	
	
		
			590 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			590 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% load static %}
 | |
| 
 | |
| {% 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 %}
 | |
|     {% if script_name %}
 | |
|         <script type="module" src="{% static 'js/'|add:script_name %}"></script>
 | |
|     {% endif %}
 | |
| {% endblock scripts %}
 | |
|          |