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

edit appointment page dynamically loads appointment list

parent 3f263ac3
No related branches found
No related tags found
1 merge request!35performance on appointment list
Pipeline #
......@@ -136,18 +136,7 @@
document.getElementById("id_datetime_when").value = dateString;
},
events: [
{% for appointment in full_appointment_list %}
{
title: '{{ appointment.title }}',
start: '{{ appointment.datetime_when | date:"c" }}',
end: '{{ appointment.datetime_until | date:"c" }}',
color: '{{ appointment.color }}',
subject_id: '{{ appointment.visit.subject.id }}',
id: '{{ appointment.id }}'
},
{% endfor %}
],
events: get_calendar_events_function("{% url 'web.api.appointments' full_list %}", false),
});
});
......
......@@ -105,7 +105,7 @@
weekNumbers: true,
startParam: "start_date",
endParam: "end_date",
events: get_calendar_events_function("{% url 'web.api.appointments' full_list %}", true),
events: get_calendar_events_function("{% url 'web.api.appointments' full_list %}", false),
});
});
</script>
......
......@@ -36,7 +36,6 @@ def appointment_details(request, id):
def appointment_add(request, visit_id=None):
full_list = get_calendar_full_appointments(request.user)
if request.method == 'POST':
form = AppointmentAddForm(request.POST, request.FILES, user=request.user)
if form.is_valid():
......@@ -50,7 +49,7 @@ def appointment_add(request, visit_id=None):
form = AppointmentAddForm(user=request.user)
return wrap_response(request, 'appointments/add.html',
{'form': form, 'visitID': visit_id, 'full_appointment_list': full_list})
{'form': form, 'visitID': visit_id, 'full_list': APPOINTMENT_LIST_GENERIC})
def appointment_edit(request, id):
......
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