views.py 172 B

12345678910
  1. from django.shortcuts import render
  2. def reports(request):
  3. context = {
  4. 'title': 'Reports',
  5. }
  6. return render(request, 'reports.html', context=context)