- 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;
- 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) {}
- or download this
[% META title = 'System Users List' -%]
...
</tr>
[% END -%]
</table>