+ templates/*.html

This commit is contained in:
jp.av.dev 2020-11-15 02:23:12 -03:00
parent a930e4e1ec
commit 6511232c03
4 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<html>
<head>
<title>Búsqueda de productos</title>
</head>
<body>
<form action="/buscar/" method="GET">
<input type="text" name="prod">
<input type="submit" value="Buscar">
</form>
</body>
</html>

View File

@ -0,0 +1,20 @@
<html>
<head>
<title>Contacto</title>
</head>
<body>
<h1>Formulario de contacto</h1>
<form action="/contacto/" method="POST">
{% csrf_token %}
<p>Asunto: <input type="text" name="asunto"></p>
<p>Mail : <input type="text" name="mail"></p>
<p>Mensaje: </p>
<p><textarea name="mensaje" rows="15" cols="45"></textarea></p>
<input type="submit" value="Enviar">
</form>
</body>
</html>

View File

@ -0,0 +1,8 @@
<html>
<head>
<title>Gracias</title>
</head>
<body>
<h1>Gracias por contactarnos</h1>
</body>
</html>

View File

@ -0,0 +1,18 @@
<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>