+ templates/*.html
This commit is contained in:
parent
a930e4e1ec
commit
6511232c03
11
TiendaOnline/gestionPedidos/templates/busqueda_prods.html
Normal file
11
TiendaOnline/gestionPedidos/templates/busqueda_prods.html
Normal 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>
|
20
TiendaOnline/gestionPedidos/templates/contacto.html
Normal file
20
TiendaOnline/gestionPedidos/templates/contacto.html
Normal 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>
|
||||
|
||||
|
8
TiendaOnline/gestionPedidos/templates/gracias.html
Normal file
8
TiendaOnline/gestionPedidos/templates/gracias.html
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gracias</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Gracias por contactarnos</h1>
|
||||
</body>
|
||||
</html>
|
@ -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}} {{articulo.seccion}} ${{articulo.precio}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
<p>Artículo no encontrado</p>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user