File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
appointment/templates/appointment Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ {% extends APPOINTMENT_BASE_TEMPLATE %}
2
+ {% load i18n %}
3
+ {% load static %}
4
+ {% block customCSS %}
5
+ < link rel ="stylesheet " type ="text/css " href ="{% static 'css/thank_you.css' %} "/>
6
+ {% endblock %}
7
+ {% block title %}
8
+ {{ page_title }}
9
+ {% endblock %}
10
+ {% block description %}
11
+ {{ page_description }}
12
+ {% endblock %}
13
+ {% block body %}
14
+ < div class ="container ">
15
+ < div class ="main-content ">
16
+ < h1 class ="thank-you-title "> Thank You for Your Appointment</ h1 >
17
+ < p class ="thank-you-message "> Your appointment has been successfully scheduled.</ p >
18
+ < p class ="appointment-details-title "> Appointment Details:</ p >
19
+ < ul class ="appointment-details ">
20
+ < li > {% trans 'Service' %}: {{ appointment.get_service_name }}</ li >
21
+ < li > {% trans 'Appointment ID' %}: {{ appointment.id_request }}</ li >
22
+ < li > {% trans 'Appointment Date' %}: {{ appointment.get_appointment_date }}</ li >
23
+ < li > {% trans 'Appointment Time' %}: {{ appointment.get_start_time }}</ li >
24
+ </ ul >
25
+ </ div >
26
+ </ div >
27
+ {% endblock %}
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = django-appointment
3
- version = 1.0.3
3
+ version = 1.0.1
4
4
description = A Django app for managing appointment scheduling with ease and flexibility.
5
5
url = https://github.com/adamspd/django-appointment
6
6
author = Adams Pierre David
You can’t perform that action at this time.
0 commit comments