Schule als Staat Projekt Web, Dokumente, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
396B

  1. from django.shortcuts import render
  2. import math
  3. from .models import ParteiWerbung
  4. # Create your views here.
  5. def index(request):
  6. objects = ParteiWerbung.objects.all()
  7. rows = group(objects, 3)
  8. return render(request, "news/index.html", {'rows': rows,
  9. })
  10. def group(l, n):
  11. return [l[k*n:k*n+n] for k in range(math.ceil(len(l) / n))]