Schule als Staat Projekt Web, Dokumente, etc.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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))]