Skip to content
Snippets Groups Projects
Commit c84778d4 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

list of appointments contain info about type of list

parent 8fbd8ef8
No related branches found
No related tags found
1 merge request!129Resolve "list shown after clicking on notifications"
......@@ -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" %}
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment