Every template in ActiveScaffold can be overridden with your own. Just find the template (anything in ActiveScaffolds’ frontends/default/views directory) you want to customize and copy it to your app/ folder. If you want to override the template for all controllers, copy it into the app/views/active_scaffold_overrides/ directory. If you want to override the template for a specific controller, copy it into that controller’s directory (e.g. app/views/users/ for the UsersController).
If you don’t want to completely override a template but instead wrap it, you can create a file in one of the same two places with the same name, but somewhere in the template make a call to render :super. This special syntax, provided by ActiveScaffold, will bypass all other overrides and render directly from the current frontend.