mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
12 lines
242 B
Python
12 lines
242 B
Python
from django.shortcuts import render
|
|
|
|
from fossdb.models import Project
|
|
|
|
|
|
def index(request):
|
|
context = {
|
|
"title": "FOSSDB",
|
|
"projects": Project.objects.all(),
|
|
}
|
|
return render(request, "fossdb/index.html", context)
|