{% extends 'base.html' %} {% set selected_tab='my_contributions' %} {% block content %}
{% if not current_user.is_authenticated %}
{% endif %} {% if current_user.is_authenticated and current_user.stars|length== 0%}
{% endif %}

My contributions

{% for interpretation in interpretations %}
{% if interpretation.user_id != current_user.id %}
{% endif %} {{ interpretation.vote_count }} {% if interpretation.user_id != current_user.id %}
{% endif %}
{% set local_breadcrumbs = interpretation.section.breadcrumbs_path %} {% include 'book/local_breadcrumbs_navigation.html'%}

{{ interpretation.section.label }}

{{ 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 %}