11 lines
		
	
	
		
			216 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			216 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| {% extends "layouts/base.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| 	<h3>{{data["recipe"].name}}<h3>
 | |
| 	<ul>
 | |
| 		{% for ingredient in data["ingredients"] %}
 | |
| 		<li>{{ingredient.name}}</li>
 | |
| 		{% endfor %}
 | |
| 	</ul>
 | |
| {% endblock content %}
 |