Isbns, and minor fixes.
[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     })