[Resolvido]Link com facelets

Olá,

estou desenvolvendo uma página xhtml utilizando jsf e facelets, mas não estou conseguindo implementar
links em uma tabela, alguém poderia auxiliar?

[code]

<ui:define name="pageTitle">TESTE</ui:define>

<ui:define name="pageHeader">Teste de Dados</ui:define>

<ui:define name="pageBody">
	<form jsfc="h:form">
	<table jsfc="h:dataTable" value="#{visao.listaAdvogados}" var="list"
		border="1">
		<tr jsfc="h:column">
			#{list.nome}
		</tr>
		<tr jsfc="h:column">
			#{list.bairro}
		</tr>
		<tr jsfc="h:column">
			#{list.telefone}
		</tr>
	</table>
	
	<input type="submit"
		jsfc="h:commandButton" action="#{visao.voltar}" value="Voltar"/>
	
	</form>
</ui:define>

</ui:composition>

[/code]

Obrigado

Achei a solução:

[code]

<ui:define name="pageTitle">TESTE</ui:define>   

<ui:define name="pageHeader">Teste de Dados</ui:define>   

<ui:define name="pageBody">   
    <form jsfc="h:form">   
    <table jsfc="h:dataTable" value="#{visao.listaAdvogados}" var="list"   
        border="1">   
        <tr jsfc="h:column">   
            [color=red]<input type="submit" jsfc="h:commandLink" value="#{list.nome}" action="#{visao.pagina}"/>[/color]   
        </tr>  [/code]