fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix
[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
})