Skip to content

Commit

Permalink
fix thread last author display on web index
Browse files Browse the repository at this point in the history
  • Loading branch information
desvox committed Apr 23, 2024
1 parent 3fb5692 commit 298dcc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/threadIndex.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h2>Pinned Threads</h2>
<br>
{{ thread["reply_count"] }} replies; active <span class="datetime">{{ thread["last_mod"] }}</span>
<br>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
</div>
{% endfor %}
</div>
Expand All @@ -68,7 +68,7 @@ <h2>Bookmarked Threads</h2>
<br>
{{ thread["reply_count"] }} replies; active <span class="datetime">{{ thread["last_mod"] }}</span>
<br>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
<br><a href="setBookmark?delBookmark={{ thread['thread_id'] }}">Unbookmark this thread.</a>
</div>
{% endfor %}
Expand All @@ -88,7 +88,7 @@ <h2>Threads</h2>
<br>
{{ thread["reply_count"] }} replies; active <span class="datetime">{{ thread["last_mod"] }}</span>
<br>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
<br><a href="setBookmark?bookmarkId={{ thread['thread_id'] }}">Bookmark this thread.</a>
</div>
{% endfor %}
Expand Down

0 comments on commit 298dcc2

Please sign in to comment.