review/templates/pieces/comment.html @ d5280b38dd4c
cli: add external editor support
fixes #33
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 15 Jun 2010 19:15: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>