31 lines
458 B
Plaintext
31 lines
458 B
Plaintext
<%
|
|
Include("intro.inc");
|
|
%>
|
|
|
|
Loans:
|
|
<p />
|
|
|
|
<div class="Data">
|
|
<table class="Data">
|
|
<tr>
|
|
<th>Date of loan</th>
|
|
<th>Return date</th>
|
|
<th>Loaner</th>
|
|
</tr>
|
|
<%
|
|
Request("SELECT * FROM loans.xml, clients.xml
|
|
WHERE (LoanClient = ClientId)
|
|
ORDER BY LoanDeparture DESC ");
|
|
Display("templates/loansmanage.tpl");
|
|
DisplayEmpty("templates/boxtocomeempty.tpl");
|
|
%>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<p />
|
|
|
|
<%
|
|
Include("outro.inc");
|
|
%>
|