33 lines
460 B
Plaintext
33 lines
460 B
Plaintext
<%
|
|
Include("intro.inc");
|
|
%>
|
|
|
|
Liste des boîtes:
|
|
<p />
|
|
|
|
<div class="Data">
|
|
<table class="Data">
|
|
<tr>
|
|
<th>Boîte</th>
|
|
<th>Status</th>
|
|
<th>Date de péremption</th>
|
|
</tr>
|
|
<%
|
|
Request("SELECT * FROM boxes.xml, box_status.xml
|
|
WHERE (BoxStatus = StatId)
|
|
ORDER BY BoxName ");
|
|
Display("templates/boxmanage.tpl");
|
|
DisplayEmpty("templates/boxtocomeempty.tpl");
|
|
%>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p />
|
|
|
|
<%
|
|
Include("outro.inc");
|
|
%>
|