Bugfix for #2010078: Comments that await moderation are visually distinguished from published comments.

svn path=/plone.app.discussion/trunk/; revision=32537
This commit is contained in:
Timo Stollenwerk 2009-12-19 14:04:49 +00:00
parent 0fa11f9af9
commit 2e004456f5
1 changed files with 3 additions and 3 deletions

View File

@ -34,11 +34,11 @@
author_home_url python:view.get_commenter_home_url(username=reply.author_username);
has_author_link python:author_home_url and not isAnon;
portrait_url python:view.get_commenter_portrait(reply.author_username);
published python:wtool.getInfoFor(reply, 'review_state') == 'published';"
tal:attributes="class python:'comment replyTreeLevel'+str(depth);
review_state python:wtool.getInfoFor(reply, 'review_state');"
tal:attributes="class python:'comment replyTreeLevel'+str(depth)+' state-'+str(review_state);
style string:margin-left: ${depth}em;
id string:${reply/getId}"
tal:condition="python:canManage or published">
tal:condition="python:canManage or review_state == 'published'">
<div class="commentImage" tal:condition="showCommenterImage">
<a href="" tal:condition="has_author_link"