diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-12-19 23:58:42 -0800 |
---|---|---|
committer | bryan newbold <bnewbold@robocracy.org> | 2022-12-20 00:29:58 -0800 |
commit | 8d020c0088dce778c25c43c2572a6c197869a208 (patch) | |
tree | beafc3e4b5ed61371b8f19e9fdf42757fd43f167 /adenosine-pds/templates | |
parent | 83569230701b17a0c24c1c9bdd197629649d92bc (diff) | |
download | adenosine-8d020c0088dce778c25c43c2572a6c197869a208.tar.gz adenosine-8d020c0088dce778c25c43c2572a6c197869a208.zip |
pds: upvoteCount, not likesCount
Only fixing the display and types (including schema), not actually
implementing vote counting in repo or database.
Diffstat (limited to 'adenosine-pds/templates')
-rw-r--r-- | adenosine-pds/templates/macro.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adenosine-pds/templates/macro.html b/adenosine-pds/templates/macro.html index 1a8f5c5..7c61230 100644 --- a/adenosine-pds/templates/macro.html +++ b/adenosine-pds/templates/macro.html @@ -28,7 +28,7 @@ {{ item.record["text"].as_str().unwrap() }} <br> <span class="counts"> - [<a href="#">{{ item.likeCount }} like</a> / <a href="#">{{ item.repostCount }} repost</a> / <a href="#">{{ item.replyCount }} reply</a>] + [<a href="#">{{ item.upvoteCount }} upvote</a> / <a href="#">{{ item.repostCount }} repost</a> / <a href="#">{{ item.replyCount }} reply</a>] <a href="{{ item.uri|aturi_to_path }}" class="pink">[inspect]</a> </span> |