19 lines
552 B
HTML
19 lines
552 B
HTML
|
<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}} {{articulo.seccion}} ${{articulo.precio}}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% else %}
|
||
|
<p>Artículo no encontrado</p>
|
||
|
{% endif %}
|
||
|
</body>
|
||
|
</html>
|