/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
210.1.1 by Suren A. Chilingaryan
Support of Appled devices by Toni Pirhonen
1
<?xml version="1.0" encoding="utf-8"?>
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
 <xsl:output method="html" encoding="utf-8"/>
4
<xsl:template match="result">
5
  <div class = "emailform">
6
  	<div class="emailheading"><table class="headingtable"><tr><td><h1>List of Sensors</h1></td></tr></table>
7
  </div>
8
  	<div class="emailcontent">
9
	  <table>
10
	  <tr><td>ID</td><td>Name</td></tr>
11
		<xsl:for-each select="value/item">
12
	  		<tr><td><xsl:value-of select="itemid"/></td><td><xsl:value-of select="itemname"/></td></tr>
13
		</xsl:for-each>
14
	  		<tr><td><button><xsl:attribute name="onclick">javascript:graph_control.closediv('sensordiv');</xsl:attribute>Close</button></td></tr>
15
	  </table>
16
	 </div>  
17
  </div>
18
</xsl:template>
19
</xsl:stylesheet>
20