<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="ISO-8859-1" indent="yes" />

<xsl:template match="/">
	<h1>Elenco modelli</h1>
	<xsl:apply-templates mode="elenco" />
	<hr />
	<h1>Dettaglio modelli</h1>
	<xsl:apply-templates mode="dettaglio" />
</xsl:template>



<xsl:template match="auto" mode="elenco">
	<xsl:value-of select="@modello" /><br />	
</xsl:template>



<xsl:template match="auto" mode="dettaglio">
<strong>Modello:</strong><xsl:text>&#160;&#160;&#160;&#160;&#160;&#160;&#160;</xsl:text><xsl:value-of select="@modello" /><br />
<strong>Costruttore:</strong><xsl:text>&#160;&#160;</xsl:text> <xsl:value-of select="@costruttore" /><br />
<strong>Anno:</strong><xsl:text>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</xsl:text><xsl:value-of select="@anno" /><br />
	<hr />
</xsl:template>






</xsl:stylesheet>
