Compare commits
No commits in common. "38c67b4a27d0ba5c55752ea91ed5a3cb1ade55e7" and "10d2e7ff13a59f120a1fa4ce276001db29293a23" have entirely different histories.
38c67b4a27
...
10d2e7ff13
@ -204,14 +204,7 @@ class AppointmentRequest(models.Model):
|
|||||||
rejection_reason = EncryptedTextField(blank=True)
|
rejection_reason = EncryptedTextField(blank=True)
|
||||||
|
|
||||||
jitsi_meet_url = models.URLField(blank=True, null=True, help_text="Jitsi Meet URL for the video session")
|
jitsi_meet_url = models.URLField(blank=True, null=True, help_text="Jitsi Meet URL for the video session")
|
||||||
jitsi_room_id = models.CharField(
|
jitsi_room_id = models.CharField(max_length=100, unique=True, null=True, blank=True, help_text="Jitsi room ID")
|
||||||
max_length=100,
|
|
||||||
unique=True,
|
|
||||||
null=True,
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Jitsi room ID"
|
|
||||||
)
|
|
||||||
|
|
||||||
created_at = models.DateTimeField(auto_now_add=True)
|
created_at = models.DateTimeField(auto_now_add=True)
|
||||||
updated_at = models.DateTimeField(auto_now=True)
|
updated_at = models.DateTimeField(auto_now=True)
|
||||||
@ -313,8 +306,8 @@ class AppointmentRequest(models.Model):
|
|||||||
self.status = 'rejected'
|
self.status = 'rejected'
|
||||||
self.rejection_reason = reason
|
self.rejection_reason = reason
|
||||||
self.scheduled_datetime = None
|
self.scheduled_datetime = None
|
||||||
self.jitsi_meet_url = None
|
self.jitsi_meet_url = ''
|
||||||
self.jitsi_room_id = None
|
self.jitsi_room_id = ''
|
||||||
if commit:
|
if commit:
|
||||||
self.save()
|
self.save()
|
||||||
|
|
||||||
|
|||||||
@ -269,6 +269,7 @@
|
|||||||
Submit a new request with different preferred dates or times
|
Submit a new request with different preferred dates or times
|
||||||
</li>
|
</li>
|
||||||
<li>Consider our group therapy sessions with more availability</li>
|
<li>Consider our group therapy sessions with more availability</li>
|
||||||
|
<li>Explore our self-guided resources and workshops</li>
|
||||||
<li>Join our waitlist for last-minute availability</li>
|
<li>Join our waitlist for last-minute availability</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -193,12 +193,6 @@
|
|||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-info {
|
|
||||||
color: #2d3748;
|
|
||||||
font-size: 16px;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.email-footer {
|
.email-footer {
|
||||||
background-image: linear-gradient(to right, #e11d48, #db2777, #f97316);
|
background-image: linear-gradient(to right, #e11d48, #db2777, #f97316);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
@ -251,6 +245,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-container">
|
<div class="email-container">
|
||||||
|
<!-- Header -->
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<h1>Appointment Confirmed!</h1>
|
<h1>Appointment Confirmed!</h1>
|
||||||
<p>Your therapy session has been scheduled</p>
|
<p>Your therapy session has been scheduled</p>
|
||||||
@ -269,9 +264,6 @@
|
|||||||
<div class="confirmation-title">Your Appointment Details</div>
|
<div class="confirmation-title">Your Appointment Details</div>
|
||||||
<div class="appointment-time">{{ scheduled_datetime }}</div>
|
<div class="appointment-time">{{ scheduled_datetime }}</div>
|
||||||
<div class="therapist-info">With: Nathalie (Therapist)</div>
|
<div class="therapist-info">With: Nathalie (Therapist)</div>
|
||||||
<div class="login-info">
|
|
||||||
On the day of your appointment, please login to your account at www.AttuneHeartTherapy.com 15 minutes early to join your Therapy Session.
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user