Guest User

Untitled

a guest
Jul 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. my $user_rs = model('Schema::User');
  2. %ctx->stash(
  3. title => 'My Title',
  4. users => sub {
  5. my ($root, $matched_node) = @_;
  6. $matched_node->append(
  7. $root->li(
  8. $root->a({href=>$action->uri($id...)
  9. );
  10. },
  11. );
  12.  
  13.  
  14. <html>
  15. <head>
  16. <title>Test</title>
  17. </head><body>
  18. <h1 id="page-title"></h1>
  19. <div>
  20. <ul id='users[id,name]'>
  21. <li><a id=".id" href=".url">User</a></li>
  22. </ul>
  23. <span id='!users'>no users!!</span>
  24. </div>
  25. </body>
  26. </html>
Add Comment
Please, Sign In to add comment