feature/50-contact-management #67

Merged
philipp merged 20 commits from feature/50-contact-management into dev 2021-02-18 15:13:37 +00:00
Showing only changes of commit b01fe050d2 - Show all commits

View File

@ -104,7 +104,11 @@
<div class="ml-4"> <div class="ml-4">
<div class="text-sm font-medium text-gray-900"> <div class="text-sm font-medium text-gray-900">
{#if t.contact} {#if t.contact}
{JSON.stringify(t.contact)} <a
href="../contacts/{t.contact.id}"
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800">{t.contact.firstname}
{t.contact.middlename || ''}
{t.contact.lastname}</a>
{:else}no contact specified{/if} {:else}no contact specified{/if}
</div> </div>
</div> </div>