add emojid

This commit is contained in:
Swrup 2022-03-23 04:34:54 +01:00
parent ccba00b2e7
commit 4dd63360a2
7 changed files with 5082 additions and 9 deletions

View file

@ -8,6 +8,7 @@ let pp_post fmt t =
| Post post -> (None, post)
in
let { id
; emojid
; parent_id = _parent_id
; date
; user_id
@ -68,11 +69,11 @@ let pp_post fmt t =
Format.fprintf fmt
{|
<span class=postNo>
<button data-id="%s" class="quote-link" title="Reply to this post">%s</button>
<button data-id="%s" data-emojid="%s" class="quote-link" title="Reply to this post">%s</button>
</span>
%a
|}
id id replies_view ()
id emojid emojid replies_view ()
in
let post_info_view fmt () =