What version are you running?
6.0.2
What's the URL of the page containing the problem?
N/A
What steps will reproduce the problem?
- Go to any review, create a comment
- Puhlish the changes
- Go to that comment and leave a reply
- Look at the email sent with that reply
What is the expected output? What do you see instead?
Expected:
An email header with:
On July 12th, 2024, 3:59 a.m. UTC, Raymond Lam wrote
Actual:
On , Raymond Lam wrote:
Timestamp is missing for the first reply
What operating system are you using? What browser?
MacOS (14.5), Chrome
Please provide any additional information below.
- After poking around at the templated HTML (reply_email_content.html) I noticed:
{% for entry in comment_entries %} <blockquote style="margin-left: 1em; border-left: 2px solid #d0d0d0; padding-left: 10px;"> <p style="margin-top: 0;">On {{review.time_emailed|date:"F jS, Y, P T"}}, <strong>{{review.user|user_displayname}}</strong> wrote:</p> <blockquote style="margin-left: 1em; border-left: 2px solid #d0d0d0; padding-left: 10px;">
When I changed review.time_emailed
to reply.comment.timestamp
the bug is fixed.