Skip to content

Instantly share code, notes, and snippets.

from django.shortcuts import render, get_object_or_404
from .models import Course
from .forms import ContactCourse
def index(request):
courses = Course.objects.all()
template_name = 'courses/index.html'
context = {