diff options
author | Mario <mario@mariovavti.com> | 2024-12-07 19:34:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-07 19:34:30 +0000 |
commit | b59fe7790607f6692d01550f1c7332cab264c26d (patch) | |
tree | 2a9758213216b280cb0056b44a874cce925947a7 /view/tpl/conv_item.tpl | |
parent | 1941b4f02697da54d003e72ded6ab772c35cc46b (diff) | |
download | volse-hubzilla-b59fe7790607f6692d01550f1c7332cab264c26d.tar.gz volse-hubzilla-b59fe7790607f6692d01550f1c7332cab264c26d.tar.bz2 volse-hubzilla-b59fe7790607f6692d01550f1c7332cab264c26d.zip |
provide a comments disabled indicator and some cleanup
Diffstat (limited to 'view/tpl/conv_item.tpl')
-rw-r--r-- | view/tpl/conv_item.tpl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 74e06d6ac..56f590284 100644 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -36,14 +36,17 @@ <i class="bi bi-clock"></i> {{/if}} {{if $item.editedtime}} - <i class="bi bi-pencil"></i> + <i class="bi bi-pencil" title="{{$item.editedtime}}"></i> {{/if}} {{if $item.verified}} <i class="bi bi-shield-check" title="{{$item.verified}}"></i> {{elseif $item.forged}} <i class="bi bi-shield-exclamation text-danger" title="{{$item.forged}}"></i> {{/if}} - <small class="autotime" title="{{$item.isotime}}"><time class="dt-published" datetime="{{$item.isotime}}">{{$item.localtime}}</time>{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</small> + {{if $item.no_comment}} + <i class="bi bi-ban" title="{{$item.no_comment}}"></i> + {{/if}} + <small class="autotime" title="{{$item.isotime}}"><time class="dt-published" datetime="{{$item.isotime}}">{{$item.localtime}}</time>{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</small> </div> {{if $item.thr_parent_uuid}} <a href="javascript:doscroll('{{$item.thr_parent_uuid}}',{{$item.parent}});" class="ms-3" title="{{$item.top_hint}}"><i class="bi bi-chevron-double-up"></i></a> |