Feature: Mark guests as invited #60

Merged
bustikiller merged 9 commits from guest-status-changes into main 2024-10-27 18:28:22 +00:00
Showing only changes of commit dde976b076 - Show all commits

View File

@ -50,6 +50,7 @@ export default function guestsTable() {
<th scope="col" className="px-6 py-3"> <th scope="col" className="px-6 py-3">
Status Status
</th> </th>
<th>Actions</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -79,6 +80,11 @@ export default function guestsTable() {
{guest.status} {guest.status}
</span> </span>
</td> </td>
<td>
{guest.status === 'Considered' && (<button className="bg-blue-300 hover:bg-blue-500 text-white py-1 px-2 rounded">
Invite
</button>)}
</td>
</tr> </tr>
))} ))}
</tbody> </tbody>