{% extends 'base.html' %} {% load static %} {% load widget_tweaks %} {% block scripts %} {% endblock scripts %} {% block title %}book title list{% endblock title %} {% block content %} {% comment %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %} {% endcomment %} {% if messages %} {% for message in messages %} {% if 'info' in message.tags %} {% include 'components/alert.html' with is_info=True title="Success" body=message %} {% elif 'error' in message.tags %} {% include 'components/alert.html' with is_info=False title="Error" body=message %} {% endif %} {% endfor %} {% endif %} {% include 'components/header.html' with title="Book titles" description="List of all the book titles available" is_form_available=True icon="" %} {% for letter in letters %} {{ letter }} {% endfor %} {% if qs %} {% else %}
no book titles staring with {{selected_letter}}
{% endif %} {% endblock content %}