feat: Implement admin user and course management, instructor course and quiz management
This commit is contained in:
parent
8edc3770eb
commit
a65ded02f9
7 changed files with 156 additions and 7 deletions
|
|
@ -119,7 +119,7 @@
|
|||
|
||||
<!-- Timeline -->
|
||||
<div class="bg-white rounded-xl shadow-sm p-6">
|
||||
<h3 class="font-semibold text-gray-700 mb-4">ไทม์ไลน์</h3>
|
||||
<h3 class="font-semibold text-gray-700 mb-4">ข้อมูลระบบ</h3>
|
||||
<div class="space-y-3 text-sm">
|
||||
<div class="flex justify-between">
|
||||
<span class="text-gray-500">สร้างเมื่อ</span>
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@
|
|||
<div class="w-10 h-10 rounded-full overflow-hidden flex items-center justify-center bg-primary-100">
|
||||
<img
|
||||
v-if="props.row.avatar_url || props.row.profile?.avatar_url"
|
||||
:src="props.row.avatar_url || props.row.profile?.avatar_url"
|
||||
:src="props.row.avatar_url || props.row.profile?.avatar_url || undefined"
|
||||
class="w-full h-full object-cover"
|
||||
alt="Avatar"
|
||||
/>
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
<div class="w-20 h-20 rounded-full overflow-hidden flex items-center justify-center bg-primary-100 text-3xl">
|
||||
<img
|
||||
v-if="selectedUser.avatar_url || selectedUser.profile?.avatar_url"
|
||||
:src="selectedUser.avatar_url || selectedUser.profile?.avatar_url"
|
||||
:src="selectedUser.avatar_url || selectedUser.profile?.avatar_url || undefined"
|
||||
class="w-full h-full object-cover"
|
||||
alt="Avatar"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue