-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanel_embajador.php
67 lines (65 loc) · 1.28 KB
/
panel_embajador.php
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
59
60
61
62
63
64
65
66
67
<?php include('include/header.php'); ?>
<article id="panel_embajadores">
<h1>Panel de control</h1>
<div id="estadistica_emb">
<div>
<p>Entregaste</p>
<h2>10</h2>
<p>Manos</p>
</div>
<div>
<p>Tenés</p>
<h2>5</h2>
<p>Pedidos</p>
</div>
</div>
<div id="paneles_embajador">
<article class="panel_emb">
<h2>Tus pedidos:</h2>
<table class="tabla_emb">
<tr>
<th>Nombre</th>
<th>Fecha de solicitud</th>
<th>Número de pedido</th>
<th>Estado</th>
</tr>
<tr>
<td>Lorem Ipsum</td>
<td>10/05/2017</td>
<td>125623</td>
<td>Pendiente</td>
</tr>
<tr>
<td>Ipsum Lorem</td>
<td>05/02/2017</td>
<td>125210</td>
<td>Pendiente</td>
</tr>
</table>
</article>
<article id="terminadas" class="panel_emb">
<h2>Terminadas:</h2>
<table class="tabla_emb">
<tr>
<th>Nombre</th>
<th>Fecha de solicitud</th>
<th>Número de pedido</th>
<th>Estado</th>
</tr>
<tr>
<td>Lorem Ipsum</td>
<td>10/05/2017</td>
<td>125623</td>
<td>Cancelada</td>
</tr>
<tr>
<td>Ipsum Lorem</td>
<td>05/02/2017</td>
<td>125210</td>
<td>Entregada</td>
</tr>
</table>
</article>
</div>
</article>
<?php include('include/footer.php'); ?>