{% extends 'base.html' %} {% set selected_tab='my_contributions' %} {% block title %}My Contributions{% endblock %} {% block content %}
{% if not current_user.is_authenticated %}
{% endif %} {% if current_user.is_authenticated and not interpretations.total %}
You don't have contributions! Start review books to create one!
{% endif %}
{% if current_user.is_authenticated and interpretations.total %}

My contributions

{% if current_user.is_authenticated %} {% include 'book/components/header_buttons.html' %} {% endif %}
{% endif %} {% for interpretation in interpretations %} {% include 'book/components/interpretation_list_item.html' %} {% endfor %} {% if current_user.is_authenticated and page.pages > 1 %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}