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

{{ _('My Rankings') }}

{% if current_project %}

{{ _('Here are all the thoughts you\'ve ranked, marked as essential, or vetoed in project:') }} {{ current_project.name }}

{% else %}

{{ _('Here are all the thoughts you\'ve ranked, marked as essential, or vetoed.') }}

{% endif %}
{% if rankings %}
{% for ranking in rankings %}
{{ ranking.thought.content }}
{% if ranking.essential %} Essential {% endif %} {% if ranking.vetoed %} Vetoed {% endif %} {{ ranking.points }} {{ _('points') }}

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

{% endfor %}
{% set essential_rankings = rankings|selectattr('essential', 'eq', true)|list %} {% if essential_rankings %} {% for ranking in essential_rankings %}
{{ ranking.thought.content }}
Essential

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

{% endfor %} {% else %}
{{ _("You haven't marked any thoughts as essential yet.") }} {{ _("Go to the ranking page to mark thoughts as essential.") }}
{% endif %}
{% set vetoed_rankings = rankings|selectattr('vetoed', 'eq', true)|list %} {% if vetoed_rankings %} {% for ranking in vetoed_rankings %}
{{ ranking.thought.content }}
Vetoed

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

{% endfor %} {% else %}
{{ _("You haven't vetoed any thoughts yet.") }} {{ _("Go to the ranking page to veto thoughts.") }}
{% endif %}
{% else %}
You haven't ranked any thoughts yet. Go to the ranking page to start ranking thoughts!
{% endif %}
{{ _("About Your Rankings") }}

{{ _("This page shows all the thoughts you've interacted with:") }}

  • {{ _("Thoughts you've ranked (from -10 to +10 points)") }}
  • {{ _("Thoughts you've marked as essential (max 5)") }}
  • {{ _("Thoughts you've vetoed (max 5)") }}

{{ _("You can update your rankings at any time by clicking the 'Update Ranking' button or visiting the main ranking page.") }}

{{ _("Your Status") }}

{{ _("Essential thoughts:") }} {{ request.current_user.count_essentials() }}/5

{{ _("Vetoed thoughts:") }} {{ request.current_user.count_vetoes() }}/5

{% endblock %}