review/templates/pieces/comment.html @ b45f32cad5b8

cli: fix help text to look better as rst
author Steve Losh <steve@stevelosh.com>
date Tue, 15 Jun 2010 18:19:24 -0400
parents 62c034fdeed2
children 78d9f73badd9
<div class="comment group" id="comment-{{ comment.identifier }}">
    <a href="#comment-{{ comment.identifier }}" class="expand" id="comment-expand-{{ comment.identifier }}">+</a>
    <script type="text/javascript">
        $(function() {
            $("#comment-expand-{{ comment.identifier }}").colorbox({inline: true, href: "#comment-{{ comment.identifier }}"});
        });
    </script>
    <div class="avatar">
        <img src="{{ utils['item_gravatar'](comment, 30) }}" />
    </div>
    <div>
        <div class="author">
            <a href="mailto:{{ utils['email'](comment.author) }}">{{ utils['templatefilters'].person(comment.author) }}</a>
            said:
        </div>
        <div class="message">{{ comment.message }}</div>
    </div>
</div>