{% extends "base.html" %} {% block title %}{{ _('My Thoughts') }} - {{ _('Wunschkonzert') }}{% endblock %} {% block content %}

{{ _("My Thoughts") }}

{% if current_project %}

{{ _("Here are all the thoughts you've submitted to project:") }} {{ current_project.name }}

{% else %}

{{ _("Here are all the thoughts you've submitted.") }}

{% endif %}
{% if thoughts %} {% for thought in thoughts %}
{{ thought.content }}
{% if current_project and current_project.only_show_results_after_end and not current_project.is_project_over() %} {{ _('Hidden') }} {% else %} {{ thought.total_points() }} {{ _('points') }} {% endif %}

{{ thought.created_at.strftime('%Y-%m-%d %H:%M') }}

{% endfor %} {% else %}
{{ _('You haven\'t submitted any thoughts yet.') }} {{ _('Submit your first thought!') }}
{% endif %}
{{ _('About Your Thoughts') }}

{{ _('This page shows all the thoughts you\'ve submitted to the community.') }}

{% if current_project and current_project.only_show_results_after_end and not current_project.is_project_over() %}

{{ _('Points are hidden until the project ends.') }}

{% else %}

{{ _('You can see how many points each thought has received from the community.') }}

{% endif %}

{{ _('Remember, the ranking on the main page is anonymous - nobody knows which thoughts are yours unless you tell them!') }}

{% block extra_js %} {% endblock %} {% endblock %}