13 lines
		
	
	
		
			318 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			318 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends 'layout.html' %}
 | |
| 
 | |
| {% block head %}
 | |
|     {{ super() }}
 | |
|     <title>Upload Mystery YAML</title>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block body %}
 | |
|     {% for filename, resulttext in results.items() %}
 | |
|         <span>{{ filename }}: {{ "Looks ok" if resulttext == True else resulttext }}</span><br>
 | |
|     {% endfor %}
 | |
| {% endblock %}
 |