package webapp; use Dancer2; my %common = (title => 'webapp'); get '/' => sub { template index => { %common }; }; post '/' => sub { if (body_parameters->get('Users-list') eq 'Users-list' ) { template index => { %common, button => 'Users-list' } } elsif (body_parameters->get('Apps-list') eq 'Apps') { template index => { %common, button => 'Apps-list' } } }; true; #### [% IF button %]

You pressed [% button %].

[% ELSE %]
[% END %]