Skip to content

kimble/grails-view-compartments

Repository files navigation

View compartments

Add support for grouping views. See GRAILS-1243 for background information.

Example

class UserAdminController {
    
    static compartment = "admin"

    // The view should be placed in grails-app/views/admin/userAdmin/index.gsp        
    def index = {
        // ...
    }
    
}