Skip to content

Commit 8e69237

Browse files
committed
upgrade package & django version
1 parent 55082df commit 8e69237

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 %}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-appointment
3-
version = 1.0.3
3+
version = 1.0.1
44
description = A Django app for managing appointment scheduling with ease and flexibility.
55
url = https://github.com/adamspd/django-appointment
66
author = Adams Pierre David

0 commit comments

Comments
 (0)