Subversion Repositories computer_asset_manager_v1

Rev

Rev 41 | Rev 46 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 41 Rev 42
Line 9... Line 9...
9
      <link rel="stylesheet" type="text/css" href="../../camp.css">
9
      <link rel="stylesheet" type="text/css" href="../../camp.css">
10
   </head>
10
   </head>
11
   <body>
11
   <body>
12
      <?php include_once('../../menu.php'); ?>
12
      <?php include_once('../../menu.php'); ?>
13
      <div id="content">
13
      <div id="content">
-
 
14
         <?php print queryToTable( 
-
 
15
               "select 
-
 
16
                  license_product.name 'Product',
-
 
17
                  license.license 'License',
-
 
18
                  ifnull(device.name,'--- Available ---') 'Installed On',
-
 
19
                  client.name 'Client'
-
 
20
               from
-
 
21
                  license join license_product using (license_product_id)
-
 
22
                  left outer join device using (device_id)
-
 
23
                  join client using ( client_id )
-
 
24
               order by license_product.name, device.name
-
 
25
               "
-
 
26
               );
-
 
27
         ?>
14
      </div>
28
      </div>
15
   </body>
29
   </body>
16
</html>
30
</html>