This repository was archived by the owner on Apr 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
41 lines (39 loc) · 1.39 KB
/
detail.html
File metadata and controls
41 lines (39 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>QueComer</title></head><body style="width: 754px; color: rgb(0, 0, 0); background-color: rgb(251, 253, 196);" alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td colspan="2" rowspan="1" style="vertical-align: top; width: 585px;">
<img style="width: 796px; height: 199px;" alt="banner" src="/quecomer/fotos/banner.jpg"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 149px;">
<a href="/quecomer/">Inicio</a><br>
Platos<br>
Ingredientes<br>
Sugerencias<br>
Ayuda<br>
</td>
<td style="vertical-align: top; width: 585px;">
<p>Detalle de un plato:
<ul>Nombre: {{ detalle_plato.nombre }}</ul>
<ul>Kcal: {{ detalle_plato.kcal }}</ul>
<img src="{{ detalle_plato.fotoUrl }}"/>
</p>
<h2>Modifica este plato</h2>
<form action="/platos/{{detalle_plato.id}}/edit" method="post">{% csrf_token %}
{{ formset }}
<input type="submit" value="Submit" />
</form>
</td>
</tr>
<tr>
<td colspan="2" rowspan="1" style="vertical-align: top; width: 585px;">(c) Secuoya Projects S.L.<br>
</td>
</tr>
</tbody>
</table>
<br>
</body></html>