Active Evaluations
0
Pending workup/decision
Eval — No Transplant
0
Completed, not transplanted
DDLT Waitlist
0
Active listed patients
Total Surgeries
0
In logbook
Post-Transplant
0
In registry (follow-up)
Today's OPD
0
Patients booked
MDT Decisions
0
Total recorded
LDLT Pairs
0
Linked donor-recipient
🔴 High-Priority Waitlist (MELD > 25)
No urgent patients
📅 Today's Schedule
No events today
⏸ Evaluated — Awaiting / Not Transplanted
None
🕒 Recent Logbook Entries
No surgeries logged
Patient Evaluations
All
LDLT Donor
LDLT Recipient
DDLT
Approved
Completed — No Transplant
| ID | Patient Name | Age/Sex | Type | Indication | MELD/CTP | Paired With | Status | Date | Actions |
|---|---|---|---|---|---|---|---|---|---|
No evaluations yet. | |||||||||
DDLT Waiting List
Blood Group O
0
MELD > 25
0
Active
0
Avg Wait (days)
—
| Reg # | Patient | Age/Sex | Blood Group | MELD | CTP | Indication | Listed Date | Days Waiting | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
No patients on waitlist. | ||||||||||
MDT Meeting Records
| Date | Patient | Case Type | Decision | Attendees | Next Steps | Actions |
|---|---|---|---|---|---|---|
No MDT records yet. | ||||||
Surgical Logbook
LDLT
0
DDLT
0
Donor Hepatectomy
0
Other HPB
0
Lead Surgeon
0
Assistant
0
All
LDLT
DDLT
Donor
Other HPB
| # | Date | Patient/ID | Procedure | Role | Blood Loss | Duration | Outcome | Notes | Actions |
|---|---|---|---|---|---|---|---|---|---|
No surgeries logged. | |||||||||
OPD Clinic
Total Clinic Sessions
0
Total Patients Seen
0
This Month
0
Patients seen
Avg per Session
0
| Date | Surgeon | Location | Patients Seen | Notes | Actions |
|---|---|---|---|---|---|
No clinic sessions logged yet. Click "+ Log Clinic Session" to add. | |||||
Patient Records
| MRN | Name | Age/Sex | Blood Group | Diagnosis | Status | Transplant Date | Contact | Actions |
|---|---|---|---|---|---|---|---|---|
No patients registered. | ||||||||
Calendar & Surgeon Availability
📅
Google Calendar Integration
Connect to sync appointments, OT schedule, and OPD sessions with your team.
View:
Surgeon:
‹
April 2025
›
Sun
Mon
Tue
Wed
Thu
Fri
Sat
👥 Surgeon Availability This Month
📅 OPD Sessions (from Clinic Log)
| Date | Surgeon | Location | Patients |
|---|---|---|---|
No OPD sessions logged. | |||
🚫 Leave & Unavailability
| Surgeon | From | To | Reason | Actions |
|---|---|---|---|---|
No leave marked. | ||||
📋 All Events
| Date | Time | Title | Type | Surgeon | Patient | Actions |
|---|---|---|---|---|---|---|
No events scheduled. | ||||||
Secure Messaging
Select a conversation
Files & Google Drive
📁
Google Drive Storage
Upload patient images, reports, and DICOM files to your TransplantOS folder.
📤
Click or drag files here to upload
Images, PDFs, DICOM reports — stored in Google Drive
📁 Recent Files
| Filename | Type | Patient | Size | Uploaded | Actions |
|---|---|---|---|---|---|
No files uploaded yet. | |||||
📊 Google Sheets Sync
All patient records, evaluations, and logbook entries sync automatically to Google Sheets for team access.
Users & Access Control
🔐 Role Permissions Matrix
| Feature | Admin | Surgeon | Coordinator | Fellow |
|---|---|---|---|---|
| View All Patients | ✅ | ✅ | ✅ | ✅ |
| Add/Edit Patients | ✅ | ✅ | ✅ | ❌ |
| Surgical Logbook | ✅ | ✅ | ❌ | Own only |
| OPD Clinic Records | ✅ | ✅ | View only | Own only |
| MDT Records | ✅ | ✅ | ✅ | View only |
| Waitlist Management | ✅ | ✅ | ✅ | View only |
| User Management | ✅ | ❌ | ❌ | ❌ |
| Export PDF/Sheets | ✅ | ✅ | ✅ | ❌ |
| Name | Role | Last Active | 2FA | Actions |
|---|
Settings
🏥 Hospital & Department
🔗 Integrations
📊
Google Sheets Backend
ID: Not configured
📁
Google Drive
Folder: Not linked
📅
Google Calendar
Sync appointments and OT schedule
🛡️ Security
🚀 Deploy with Google Apps Script (Option 3)
This option connects TransplantOS directly to Google Sheets as a live database — any team member who opens the app URL sees the same data in real time. No server needed.
Step 1 — Create your Google Sheet
Go to sheets.google.com → New spreadsheet → Name it TransplantOS_DB.
Create these tabs (sheets):
Copy the Spreadsheet ID from the URL:
Create these tabs (sheets):
Patients Evaluations Waitlist Logbook MDT OPD EventsCopy the Spreadsheet ID from the URL:
docs.google.com/spreadsheets/d/[THIS PART]/editStep 2 — Create the Apps Script web app
In the Sheet → Extensions → Apps Script → delete default code → paste this:
const SHEET_ID = 'YOUR_SPREADSHEET_ID_HERE';
function doGet(e) {
const sheet = SpreadsheetApp.openById(SHEET_ID)
.getSheetByName(e.parameter.tab || 'Patients');
const data = sheet.getDataRange().getValues();
return ContentService
.createTextOutput(JSON.stringify(data))
.setMimeType(ContentService.MimeType.JSON);
}
function doPost(e) {
const payload = JSON.parse(e.postData.contents);
const sheet = SpreadsheetApp.openById(SHEET_ID)
.getSheetByName(payload.tab);
if (payload.action === 'append') {
sheet.appendRow(payload.row);
} else if (payload.action === 'clear') {
sheet.clearContents();
payload.rows.forEach(r => sheet.appendRow(r));
}
return ContentService
.createTextOutput(JSON.stringify({status:'ok'}))
.setMimeType(ContentService.MimeType.JSON);
}Step 3 — Deploy as web app
In Apps Script → Deploy → New deployment
Type: Web app
Execute as: Me
Who has access: Anyone within [your organisation] (or "Anyone" for external)
→ Click Deploy → Copy the Web App URL
Paste it in the field below and click Save.
Type: Web app
Execute as: Me
Who has access: Anyone within [your organisation] (or "Anyone" for external)
→ Click Deploy → Copy the Web App URL
Paste it in the field below and click Save.
Step 4 — Connect the app
Not connected
Step 5 — Share with your team
Save this HTML file anywhere accessible to your team (email it, host on Google Sites, hospital intranet, or use Netlify free tier for HTTPS). Each team member opens the file and uses the same Google Sheets database. Share the Sheet with team member emails for direct spreadsheet access.
Security note: For patient data, restrict Apps Script access to "Anyone within [your Google Workspace domain]" and enable 2-step verification on all accounts. Comply with DISHA 2023 / IT Act requirements for health data storage in India.
Security note: For patient data, restrict Apps Script access to "Anyone within [your Google Workspace domain]" and enable 2-step verification on all accounts. Comply with DISHA 2023 / IT Act requirements for health data storage in India.