cfbe: API: bug.comment.From -> bug.comment.author
authorChris Ball <cjb@laptop.org>
Mon, 6 Sep 2010 19:54:10 +0000 (15:54 -0400)
committerChris Ball <cjb@laptop.org>
Mon, 6 Sep 2010 19:54:10 +0000 (15:54 -0400)
interfaces/web/templates/bug.html

index 66993de54f2a6a28a2154327cefff3825863a748..b6986a97f35c1a4ab728c158bfb07b2b9f0a888a 100644 (file)
     <h3>Comments</h3>
     {% for comment in bug.comments() %}
         <div class="bug-comment">
-            <h4 class="bug-comment-header">{{ comment.From|striptags|e }} said:</h4>
+            <h4 class="bug-comment-header">{{ comment.author|striptags|e }} said:</h4>
             <p class="bug-comment-body">{{ comment.body|trim|e }}</p>
             <p class="bug-comment-footer">on {{ comment.time|datetimeformat }}</p>
         </div>