diff --git a/smash/web/templates/appointments/list.html b/smash/web/templates/appointments/list.html index 24de957c72f74339e13d3d31e08ca4acdd50ce42..0df0378baa7ab4ce71dd8bf54755e56d346c39b0 100644 --- a/smash/web/templates/appointments/list.html +++ b/smash/web/templates/appointments/list.html @@ -9,10 +9,10 @@ {% endblock styles %} {% block ui_active_tab %}'appointments'{% endblock ui_active_tab %} -{% block page_header %}Appointments{% endblock page_header %} +{% block page_header %}{{ list_description }}{% endblock page_header %} {% block page_description %}{% endblock page_description %} -{% block title %}{{ block.super }} - Appointments{% endblock %} +{% block title %}{{ block.super }} - {{ list_description }}{% endblock %} {% block breadcrumb %} {% include "appointments/breadcrumb.html" %} diff --git a/smash/web/views/appointment.py b/smash/web/views/appointment.py index d45f67f8c6067ac2185519b3284e5f6ffd0c2b76..c4a9ddf1f5a37259e369de156f44b5ea6031d564 100644 --- a/smash/web/views/appointment.py +++ b/smash/web/views/appointment.py @@ -27,6 +27,7 @@ def appointments(request): def unfinished_appointments(request): context = { 'list_type': APPOINTMENT_LIST_UNFINISHED, + 'list_description': 'List of unfinished appointments' } return wrap_response(request, "appointments/list.html", context)