diff --git a/smash/web/templates/appointments/index.html b/smash/web/templates/appointments/index.html index 1c169f17b08f30ea08962b5a1f60561633061cd9..c440bab2db3df666951f494dd723c02cae913f32 100644 --- a/smash/web/templates/appointments/index.html +++ b/smash/web/templates/appointments/index.html @@ -88,7 +88,7 @@ {{ type.code }}, {% endfor %} </td> - <td>{{ approach.datetime_when | date:"d-M-Y H:i" }}</td> + <td>{{ approach.datetime_when | date:"Y-m-d H:i" }}</td> <td> <a href="{% url 'web.views.appointment_edit' approach.id %}" type="button" class="btn btn-block btn-default">Details</a> </td> @@ -127,6 +127,7 @@ "lengthChange": false, "searching": true, "ordering": true, + "order": [[ 2, "asc"]], "info": true, "autoWidth": false }); diff --git a/smash/web/views.py b/smash/web/views.py index f79723e7d4c42b27a23a56ec3c7b7419b52128c6..4dbf34823c10c15e47cc325f38392bdfc255459d 100644 --- a/smash/web/views.py +++ b/smash/web/views.py @@ -324,8 +324,9 @@ def appointments(request): today = datetime.datetime.now() today_midnight = datetime.datetime(today.year,today.month,today.day) + month_ago = today +datetime.timedelta(days=-31) approaching_list = Appointment.objects.filter(datetime_when__gt = today_midnight, is_finished = False).order_by('datetime_when') - full_list = Appointment.objects.all() + full_list = Appointment.objects.filter(datetime_when__gt = month_ago, is_finished = False).order_by('datetime_when') for plan in planning_list: @@ -346,7 +347,10 @@ def appointment_details(request, id): def appointment_add(request, id): - full_list = Appointment.objects.all() + today = datetime.datetime.now() + today_midnight = datetime.datetime(today.year,today.month,today.day) + month_ago = today +datetime.timedelta(days=-31) + full_list = Appointment.objects.filter(datetime_when__gt = month_ago, is_finished = False).order_by('datetime_when') if request.method == 'POST': form = AppointmentAddForm(request.POST, request.FILES) form.fields['visit'].widget = forms.HiddenInput()