diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T20·38+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-08T20·38+0200 |
commit | e761b2d295c920da153ac673892cfd9616e6a2b7 (patch) | |
tree | d170810aefa8a0f881e0d0dd02bbd384c0b8539f /templates/index.html | |
parent | 1c4d436eae0d5c05c0cee2d7587f97486442a991 (diff) |
feat(templates): Display author information in templates
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 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> |