Created
August 6, 2010 20:43
-
-
Save valueof/511975 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ block commentMessage :cls } | |
<div class="{= cls }" id="dsq-comment-message-{= comment.id }"> | |
{ if comment.killed } | |
<em>{ "Comment removed." }</em> | |
{ elif !comment.approved } | |
<em>{ "This comment was flagged for review." }</em> | |
{ else } | |
{= comment.message } | |
{ if comment.last_modified_by == 'moderator' } | |
<p class="dsq-editedtxt">({ "Edited by a moderator" })</p> | |
{ elif comment.last_modified_by == 'author' && comment.has_replies } | |
<p class="dsq-editedtxt">({ "Edited by author" } {= comment.last_modified_date })</p> | |
{ /if } | |
{ /if } | |
Your code goes here. | |
</div> | |
{ /block } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment