{% 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 %}
You don't have contributions! Start review books to create one!
{% endif %}
{% for interpretation in interpretations %} {% if loop.index==1 %}

My contributions

{% endif %}
{% endfor %} {% if current_user.is_authenticated and page.pages > 1 %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}