2021-03-31 20:59:33 +00:00
{% extends 'get_started/layout.html' %}
2021-03-31 20:56:26 +00:00
{% load i18n %}
2021-03-31 20:59:33 +00:00
{% block panel %}
< div class = "block" >
< h2 class = "title is-4" > {% trans "What are you reading?" %}< / h2 >
2021-03-31 21:53:00 +00:00
< form class = "field has-addons" method = "get" action = "{% url 'get-started-books' %}" >
2021-03-31 20:59:33 +00:00
< div class = "control" >
2021-04-01 15:02:42 +00:00
< input type = "text" name = "query" value = "{{ request.GET.query }}" class = "input" placeholder = "{% trans 'Search for a book' %}" aria-label = "{% trans 'Search for a book' %}" >
2021-03-31 20:59:33 +00:00
{% if request.GET.query and not book_results %}
< p class = "help" > {% blocktrans %}Sorry, books were found. You can add books when you start using {{ site_name }}{% endblocktrans %}< / p >
{% endif %}
< / div >
< div class = "control" >
< button class = "button" type = "submit" >
< span class = "icon icon-search" title = "{% trans 'Search' %}" >
< span class = "is-sr-only" > {% trans "Search" %}< / span >
< / span >
< / button >
< / div >
< / form >
< / div >
2021-03-31 20:56:26 +00:00
2021-04-01 15:02:42 +00:00
< form class = "block" name = "add-books" method = "post" action = "{% url 'get-started-books' %}" >
2021-03-31 20:59:33 +00:00
< h3 class = "title is-5" > {% trans "Suggested Books" %}< / h3 >
< div class = "columns scroll-x" >
{% if book_results %}
< div class = "column is-narrow content" >
< p class = "help mb-0" > Search results< / p >
< div class = "columns" >
{% for book in book_results %}
2021-04-01 15:02:42 +00:00
{% include 'get_started/book_preview.html' %}
2021-03-31 20:59:33 +00:00
{% endfor %}
< / div >
< / div >
{% endif %}
< div class = "column is-narrow content" >
< p class = "help mb-0" >
{% blocktrans %}Popular on {{ site_name }}{% endblocktrans %}
< / p >
< div class = "columns" >
{% for book in popular_books %}
2021-04-01 15:02:42 +00:00
{% include 'get_started/book_preview.html' %}
2021-03-31 20:59:33 +00:00
{% endfor %}
< / div >
< / div >
2021-03-31 20:56:26 +00:00
< / div >
2021-04-01 15:20:43 +00:00
< button type = "submit" class = "button is-primary" > {% trans "Save & continue" %}< / button >
2021-03-31 20:59:33 +00:00
< / form >
2021-03-31 20:56:26 +00:00
{% endblock %}