Hi,

i would suggest 2 thinks to improve the scaffold from entities.

With forge 1.0.6, the project generated usign scaffold from-entity have wrong link in the nav bar for the principal link (with brand class).
In my case, i created a "flower" app and the html div is:

<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="/index.xhtml" class="brand">Flower</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="http://forge.jboss.org/docs/important_plugins/ui-scaffolding.html">How to Customize</a></li>
</ul>
</div>
</div>
</div>
</div>

In pageTemplate (https://github.com/forge/core/blob/master/scaffold-faces/src/main/resources/scaffold/faces/pageTemplate.xhtml) the link should be:

<h:link  id="brandLink" outcome="@{targetDir}/index.xhtml" styleClass="brand"> <h:outputText value="@{appName}" /></h:link>
in place of:
<a href="@{targetDir}/index.xhtml" class="brand">@{appName}</a>

[to avoid a wrong redirect to http://localhost:8080/index.xhtml]

And to eliminate the annoying log jboss server log:
23:59:54,914 AVVERTENZA [javax.enterprise.resource.webcontainer.jsf.context] (http--127.0.0.1-8080-1) JSF1091: No mime type could be found for file favicon.ico.  To resolve this, add a mime-type mapping to the applications web.xml

you should add on web.xml:

   <mime-mapping>
         <extension>ico</extension>
         <mime-type>image/x-icon</mime-type>
     </mime-mapping>


Best regards

fiorenzo