1
0
Fork 0

Merge pull request #96 from cthulahoops/goodreads_import

Goodreads import
This commit is contained in:
Mouse Reeve 2020-03-27 09:10:00 -07:00 committed by GitHub
commit 072e8fe02a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 181 additions and 4 deletions

View file

@ -108,6 +108,14 @@ def books_page(request):
}
return TemplateResponse(request, 'books.html', data)
@login_required
def import_page(request):
''' import history from goodreads '''
return TemplateResponse(request, 'import.html', {
'import_form': forms.ImportForm(),
})
def login_page(request):
''' authentication '''