-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrespaldodatos.txt
58 lines (57 loc) · 2.04 KB
/
respaldodatos.txt
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#verproductos.anchor
.section
.row-fluid
.span8
//include interfazGestionFiles/verProductos.jade
table.responstable
tr
th Imagen
th Nombre
th Categoría
th Valor
th Descripción
th Proveedor
th Teléfono
th Editar
- //for(let i = 0 ; i < productos.length ; i++)
//tr
td
img(src='/img/drinks/#{productos[i].nombreproducto}.png', width='100')
td #{productos[i].nombreproducto}
td #{productos[i].categoria}
td #{productos[i].valor}
td #{productos[i].descripcion}
td #{productos[i].nombreproveedor}
td #{productos[i].telefono}
td
a.icon-pencil(href='#')
.tablaproductos
.row-fluid
//
//
//
#verstock.anchor
.section
.row-fluid
.span8
table.responstable
tr
th Imagen
th Nombre
th Valor
th Stock
th Nivel
- //for(let i = 0 ; i < productos.length ; i++)
//tr
td
img(src='/img/drinks/#{productos[i].nombreproducto}.png', width='100')
td #{productos[i].nombreproducto}
td #{productos[i].valor}
td #{productos[i].stock}
if productos[i].stock < 100
td.danger
else if productos[i].stock > 100 && productos[i].stock < 150
td.warning
else
td.success
$('.red-alert').append("<img src='/img/luz-amarilla.gif' width='50px'>")