{% extends "base.html" %} {% load i18n profile %} {% block header %} {% trans "My Books" %} {% endblock %} {% block content %}

{% trans "My Books" %}

{% trans "Create new book" %} {% trans "Import Book" %}
{% for book in books %} {% endfor %}
{% if book.hidden %} {{ book.title }} {% else %} {{ book.title }} {% endif %} {% trans "edit" %} {% trans "info" %} {% trans "draft" %} {% trans "full" %}
{% if user.username == request.user.username %} {% if book.hidden %}
{% else %}
{% endif %} {% endif %}
{% if user.username == request.user.username %}

{% trans "Create new book" %}

{{ project_form.as_table }}

{% trans "Import Book" %}

{% endif %}
{% endblock %}