<{?
	'<a name = "' $2 '"></a>'
    '<div class = "comment_header">'
        {if cfg_use_gravatars {
                '<span class = "gravatar">'
                    {comment_gravatar $0 $1 $2}
                '</span>'
            }
        }
        '<span class = "user_data">'
            {or {comment_author $0 $1 $2} @"Anonymous" }
            {if {is_topic_editor $0}
                {?
                    ' (<a href = "mailto:'
                    {comment_email $0 $1 $2}
                    '">'
                    {comment_email $0 $1 $2}
                    '</a>)'
                }
            }
            '<br>'
            {comment_date cfg_date_format $0 $1 $2}
        '</span>'
    '</div>'
	'<div class = "comment_content">' {comment_content $0 $1 $2} '</div>'
	{if {is_topic_editor $0} {
		'<div class = "comment_controls">'
			{if {not {comment_approved $0 $1 $2}}
				{?
					{link {url 'APPROVE_COMMENT' 'topic' $0
						'story' $1 'id' $2} @"Approve"
					}
					' - '
				}
			}
			{link {url 'DELETE_COMMENT' 'topic' $0
						'story' $1 'id' $2} @"Delete" }
		'</div>'
		}
	}
}>
