fix wrong target for author colors on web

This commit is contained in:
r 2024-04-24 23:21:23 -05:00
parent f2b25d61d3
commit 6f7f8ec0b5
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@
<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["last_author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['last_author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
</div>
{% endfor %}
</div>
@ -68,7 +68,7 @@
<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["last_author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['last_author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
<br><a href="setBookmark?delBookmark={{ thread['thread_id'] }}">Unbookmark this thread.</a>
</div>
{% endfor %}
@ -88,7 +88,7 @@
<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["last_author"]]["user_name"] }}</span>
last active by <span class="color{{ usermap[thread['last_author']]['color'] }}">{{ usermap[thread["last_author"]]["user_name"] }}</span>
<br><a href="setBookmark?bookmarkId={{ thread['thread_id'] }}">Bookmark this thread.</a>
</div>
{% endfor %}