{% 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 %}
{{ interpretation.vote_count }}
{% set local_breadcrumbs = interpretation.section.breadcrumbs_path %} {% include 'book/local_breadcrumbs_navigation.html'%}

{{ interpretation.section.label }}

{{ display_inline_elements(interpretation.text)|safe }}

{{interpretation.user.username}} on {{interpretation.created_at.strftime('%B %d, %Y')}}
{% endfor %} {% if current_user.is_authenticated and page.pages > 1 %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}