intro_Django/TiendaOnline/gestionPedidos/templates/resultado_busqueda.html

19 lines
552 B
HTML
Raw Normal View History

2020-11-15 02:23:12 -03:00
<html>
<head>
<title>Resultado búsqueda</title>
</head>
<body>
<p>Estás buscando <strong>{{query}}</strong></p>
{% if articulos %}
<p>Encontrados : {{articulos|length}} artículos</p>
<ul>
{% for articulo in articulos %}
<li>{{articulo.nombre}} &nbsp; {{articulo.seccion}} &nbsp;${{articulo.precio}}</li>
{% endfor %}
</ul>
{% else %}
<p>Artículo no encontrado</p>
{% endif %}
</body>
</html>