Increase limit to 500 entries and warn about limit.
This commit is contained in:
parent
4f9edae05a
commit
543cc29ee1
3 changed files with 6 additions and 2 deletions
|
@ -9,6 +9,7 @@ from django.views.decorators.csrf import csrf_exempt
|
|||
|
||||
from fedireads import activitypub
|
||||
from fedireads import forms, models, books_manager
|
||||
from fedireads import goodreads_import
|
||||
from fedireads.tasks import app
|
||||
|
||||
|
||||
|
@ -162,6 +163,7 @@ def import_page(request):
|
|||
'import_form': forms.ImportForm(),
|
||||
'jobs': models.ImportJob.
|
||||
objects.filter(user=request.user).order_by('-created_date'),
|
||||
'limit': goodreads_import.MAX_ENTRIES,
|
||||
})
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue