Help for this page

Select Code to Download


  1. 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>
    
  2. or download this
        Welcome back Sample Username, you last logged in Sat 23rd Aug
    
  3. or download this
    $h = {
      user => {
    ...
        last_login => "Feb 22nd"
      }
    }
    
  4. or download this
        Welcome back Fergal Daly, you last logged in Feb 22nd
    
  5. 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});
    
  6. or download this
    for my $content (qw(name last_login)) {
    
    ...
    
    }