function index(Request $request, Application $app)
 {
     $ugrb = new UserGroupRepositoryBuilder();
     $ugrb->setIndexOnly(true);
     $userGroups = $ugrb->fetchAll();
     return $app['twig']->render('sysadmin/usergrouplist/index.html.twig', array('usergroups' => $userGroups));
 }