diff options
-rw-r--r-- | templates/index.html | 2 | ||||
-rw-r--r-- | templates/thread.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/index.html b/templates/index.html index d1b744e943c1..fe35eb7bc03d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,7 +7,7 @@ <h1>Welcome to Converse</h1> <ul> {% for thread in threads -%} - <li><a href="/thread/{{ thread.id }}">{{ thread.title }}</a> (posted at {{ thread.posted }})</li> + <li><a href="/thread/{{ thread.id }}">{{ thread.title }}</a> (posted at {{ thread.posted }} by {{ thread.author_name }})</li> {%- endfor %} </ul> <hr> 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> |