Dashboard
Dr. Admin · Surgeon
DA
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
IDPatient NameAge/SexType IndicationMELD/CTPPaired WithStatusDateActions
No evaluations yet.
DDLT Waiting List
Blood Group O
0
MELD > 25
0
Active
0
Avg Wait (days)
Reg #PatientAge/SexBlood Group MELDCTPIndicationListed Date Days WaitingStatusActions
No patients on waitlist.
MDT Meeting Records
DatePatientCase TypeDecisionAttendeesNext StepsActions
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
#DatePatient/IDProcedureRole Blood LossDurationOutcomeNotesActions
No surgeries logged.
OPD Clinic
Total Clinic Sessions
0
Total Patients Seen
0
This Month
0
Patients seen
Avg per Session
0
DateSurgeonLocationPatients SeenNotesActions
No clinic sessions logged yet. Click "+ Log Clinic Session" to add.
Patient Records
MRNNameAge/SexBlood Group DiagnosisStatusTransplant DateContactActions
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)
DateSurgeonLocationPatients
No OPD sessions logged.
🚫 Leave & Unavailability
SurgeonFromToReasonActions
No leave marked.
📋 All Events
DateTimeTitleTypeSurgeonPatientActions
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
FilenameTypePatientSizeUploadedActions
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
FeatureAdminSurgeonCoordinatorFellow
View All Patients
Add/Edit Patients
Surgical LogbookOwn only
OPD Clinic RecordsView onlyOwn only
MDT RecordsView only
Waitlist ManagementView only
User Management
Export PDF/Sheets
NameEmailRoleLast Active2FAActions
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): Patients Evaluations Waitlist Logbook MDT OPD Events
Copy the Spreadsheet ID from the URL: docs.google.com/spreadsheets/d/[THIS PART]/edit
Step 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.
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.