git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
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");
|
|
%>
|