Help for this page

Select Code to Download


  1. or download this
    my ($users) = $c->model('DB::Tech')->search_rs;
    # No parens necessary or desired, it returns just a ResultSet.
    my $users = $c->model('DB::Tech')->search_rs;
    
  2. or download this
    sub list :Chained('base') :Args(0) {
        my ( $self, $c ) = @_;
    ...
    }
    # OR this is likely to work if your TT stuff is configured right-
    sub list :Chained('base') :Args(0) {}
    
  3. or download this
    [% META title = 'System Users List' -%]
    
    ...
            </tr>
    [% END -%]
    </table>