home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 October / maximum-cd-2011-10.iso / DiscContents / digsby_setup.exe / lib / plugins / facebook / res / comment.py.xml < prev    next >
Encoding:
Text File  |  2011-02-08  |  1.0 KB  |  23 lines

  1. <div class="comment" id="comment_${comment.id}" >
  2.     <div class="comment_icon_cell">
  3.         <img class="comment_icon" src="${feed.profiles[comment.fromid].pic_square}"/>
  4.     </div>
  5.     <div class="comment_text_cell">
  6. <?py if ('can_remove' in post.comments and post.comments.can_remove) or int(comment.fromid) == int(post.viewer_id): ?>
  7.     <div class="del_comment"><a href="javascript:null;" class="del_comment_link">X</a></div>
  8. <?py #endif ?>
  9.         <div class="comment_name">
  10. <?py if bool(feed.profiles[comment.fromid].url): ?>
  11. <a class="link no_ondown_link" href="${feed.profiles[comment.fromid].url}">${feed.profiles[comment.fromid].name or _("Facebook User")}</a>
  12. <?py else: ?>
  13. ${feed.profiles[comment.fromid].name or _("Facebook User")}
  14. <?py #endif ?>
  15.             ┬╖ <!--! this line has a dot  -->
  16.         </div>
  17.         <div class="comment_time time minor" timestamp="${comment.time}"></div>
  18.         <div class="comment_text">
  19.             #{linkify(preserve_newlines(escape(to_str(comment.text))))}
  20.         </div>
  21.     </div>
  22. </div>
  23.