kpsul/journaldecaisse/views.py
2020-02-17 11:40:58 +01:00

8 lines
294 B
Python

from django.http import HttpResponse
from .models import JournalEntry
from django.shortcuts import render
def index(request):
entry_list = JournalEntry.objects.order_by('entry_date')
context = {'entry_list': entry_list}
return render(request, 'journaldecaisse/index.html', context)