package HTML::FormHandler::Widget::Form::Table; # ABSTRACT: render a form with a table layout $HTML::FormHandler::Widget::Form::Table::VERSION = '0.40068'; use Moose::Role; with 'HTML::FormHandler::Widget::Form::Simple' => { -excludes => [ 'render_start', 'render_end', 'render_form_errors' ] }; use HTML::FormHandler::Render::Util ('process_attrs'); sub render_start { my ( $self, $result ) = @_; $result ||= $self->result; my $fattrs = process_attrs($self->attributes($result)); my $wattrs = process_attrs($self->form_wrapper_attributes($result)); return qq{\n}; } sub render_form_errors { my ( $self, $result ) = @_; return '' unless $result->has_form_errors; my $output = "\n"; $output .= qq{\n$_} for $result->all_form_errors; $output .= "\n"; return $output; } sub render_end { my $self = shift; my $output .= "\n"; $output .= "\n"; return $output; } use namespace::autoclean; 1; __END__ =pod =encoding UTF-8 =head1 NAME HTML::FormHandler::Widget::Form::Table - render a form with a table layout =head1 VERSION version 0.40068 =head1 SYNOPSIS Set in your form: has '+widget_form' => ( default => 'Table' ); Use in a template: [% form.render %] =head1 AUTHOR FormHandler Contributors - see HTML::FormHandler =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2017 by Gerda Shank. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut