70c101ac2dc4e0b528b88bd2af24f5acccf3def4
[redakcja.git] / src / isbn / views.py
1 from django.shortcuts import render
2 from .models import Isbn, IsbnPool
3
4
5 def isbn_list(request):
6     return render(request, 'isbn/list.html', {
7         'pools': IsbnPool.objects.all(),
8         'list': Isbn.objects.all(),
9     })