/kai/templates/snippets/byauthor.mako

https://bitbucket.org/bbangert/kai/ · Mako · 20 lines · 19 code · 1 blank · 0 comment · 7 complexity · 322d931e3ef012794311ac0e39cbcc22 MD5 · raw file

  1. % if c.authors:
  2. <h1>Author List</h1>
  3. <ul>
  4. % for author in c.authors:
  5. <li>${h.link_to(author['author'], url=url('snippet_author', id=author['author']))} - ${author['amount']} snippets</li>
  6. % endfor
  7. </ul>
  8. % endif
  9. % if c.snippets:
  10. <h1>View Snippets for ${c.username}</h1>
  11. <ul>
  12. % for snippet in c.snippets:
  13. <li>${h.link_to(snippet.title, url=url('snippet', id=snippet.slug))} - ${widgets.format_timestamp(snippet.created)}</li>
  14. % endfor
  15. </ul>
  16. % endif
  17. <%namespace name="widgets" file="/widgets.mako"/>
  18. <%def name="title()">${parent.title()} - Home</%def>
  19. <%inherit file="layout.mako" />