diff options
Diffstat (limited to 'templates/thread.html')
-rw-r--r-- | templates/thread.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/thread.html b/templates/thread.html index e26d4bcc613e..83007d6ac1b8 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -6,9 +6,9 @@ <body> <h1>{{ thread.title }}</h1> - <p>{{ thread.body }}<br><i>Posted at {{ thread.posted }}</i></p> + <p>{{ thread.body }}<br><i>Posted at {{ thread.posted }} by {{ thread.author_name }}</i></p> {% for post in posts -%} - <li>{{ post.body }}<br><i>Posted at {{ post.posted }}</i></li> + <li>{{ post.body }}<br><i>Posted at {{ post.posted }} by {{ post.author_name }}</i></li> {%- endfor %} <hr> |