- or download this
Welcome back <b tal:content="user/name">Sample Username</b>,
you last logged in <i tal:content="user/last_login">Sat 23rd Aug</i>
- or download this
Welcome back Sample Username, you last logged in Sat 23rd Aug
- or download this
$h = {
user => {
...
last_login => "Feb 22nd"
}
}
- or download this
Welcome back Fergal Daly, you last logged in Feb 22nd
- or download this
require html::welcome_form;
...
my $last_login = $tree->look_down('tal:content' => 'user/last_login);
$last_login->replace_content($hash->{user}{last_login});
- or download this
for my $content (qw(name last_login)) {
...
}