diff --git a/scipost_django/pins/templates/pins/_hx_note_item.html b/scipost_django/pins/templates/pins/_hx_note_item.html index fb3d7b84ff7654cf5778104455f82cb8cea200a9..f7f4584fde63d7ff9c5de831d02a066589974df0 100644 --- a/scipost_django/pins/templates/pins/_hx_note_item.html +++ b/scipost_django/pins/templates/pins/_hx_note_item.html @@ -1 +1,11 @@ -{{ note.title }} +<div class="my-1"> + <div class="d-flex justify-content-between"> + <span class="fw-bold text-truncate overflow-hidden">{{ note.title }}</span> + <span class="d-flex text-nowrap gap-2"> + <span class="badge text-bg-secondary">{{ note.get_visibility_display }}</span> + <span class="fw-bold">{{ note.author.profile.full_name }}</span> + <span>{{ note.created }}</span> + </span> + </div> + <div>{{ note.description }}</div> +</div>