فهرست منبع

Notes table UI update

Vijayakrishnan Krishnan 4 سال پیش
والد
کامیت
576e0f955e
1فایلهای تغییر یافته به همراه7 افزوده شده و 3 حذف شده
  1. 7 3
      resources/views/app/patient/notes.blade.php

+ 7 - 3
resources/views/app/patient/notes.blade.php

@@ -86,16 +86,20 @@
                     @endforeach
                 </td>
                 <td class="px-2">
-                    <a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}" class="font-weight-bold">
+                    <span class="font-weight-bold">
                         {{ friendly_date_time($note->effective_dateest, false) }}
-                    </a>
+                    </span>
                     <span class="ml-1">{{ $note->is_cancelled ? '[cancelled]' : '' }}</span>
                 </td>
                 <td class="px-2">
                     {{$note->hcpPro ? $note->hcpPro->name_display: '-'}}
                 </td>
                 <td class="px-2">
-                    <a href="#" class="text-primary trigger-clone" data-uid="{{$note->uid}}">Clone</a>
+                    <div class="d-flex align-items-center">
+                        <a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}" class="font-weight-bold">Edit</a>
+                        <span class="px-2 text-secondary">|</span>
+                        <a href="#" class="text-primary trigger-clone" data-uid="{{$note->uid}}">Clone</a>
+                    </div>
                 </td>
             </tr>
         @endforeach