home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 October / maximum-cd-2011-10.iso / DiscContents / digsby_setup.exe / lib / plugins / linkedin / res / comments_list.tenjin < prev    next >
Encoding:
Text File  |  2010-06-22  |  394 b   |  12 lines

  1. <div class="comments"> 
  2. <?py if item.comments is not None: ?>
  3.     <?py for comment in item.comments: ?>
  4.         <?py if comment.is_like or comment.is_dislike: ?>
  5.         <?py     continue ?>
  6.         <?py _context['comment'] = comment ?>
  7.         <?py include(r"#{{app.resource('comment.tenjin')}}") ?>
  8.         <?py del _context['comment'] ?>
  9.     <?py #endfor ?>
  10. <?py #endif ?>
  11. </div>
  12.