{% extends 'baseTemplate.html' %} {% load i18n %} {% load hashtags %} {% block title %}{% trans "Counters" %}{% endblock %} {% block content %}

SeumBook™

{# my counter #}

{{ myCounter.trigramme }} {{ myCounter.name }} {% if not myCounter.lastReset.noSeum %}  {{ myCounter.likeCount }} {% endif %}

{% if myCounter.lastReset.noSeum %} {% trans "No seum yet" %}.
{% else %} {% if myCounter.lastReset.selfSeum %} {% trans "I got the seum" %} {{ myCounter.lastReset.formatted_delta }}. {% else %} {{ myCounter.lastReset.who.trigramme }} {% trans "threw me the seum" %} {{ myCounter.lastReset.formatted_delta }}. {% endif %}
{% endif %}

{{ myCounter.lastReset.reason | hashtag }}

{# reset form for my counter #}
{# QuickSeum #}

QuickSeum™ {% trans "Break the seum wall" %}

{% csrf_token %}
{# Counters panel #}
{% for counter in counters %}
{% csrf_token %}

{{ counter.trigramme }} {{ counter.name }} {% if not counter.lastReset.noSeum %} {% if counter.alreadyLiked %} 0 %} data-toggle="tooltip" data-placement="top" title="{{ counter.likersString }}" {% endif %}>  {{ counter.likeCount }} {% elif counter.id == myCounter.id or counter.lastReset.who.id == myCounter.id %} 0 %} data-toggle="tooltip" data-placement="top" title="{{ counter.likersString }}" {% endif %}>  {{ counter.likeCount }} {% else %}  {{ counter.likeCount }} {% endif %} {% endif %}

{% if counter.lastReset.noSeum %} {% trans "Has not got the seum yet" %}
{% else %} {% if counter.lastReset.selfSeum %} {% trans "Got the seum" %} {{ counter.lastReset.formatted_delta }}. {% else %}{% blocktrans with trigram=counter.lastReset.who.trigramme time_ago=counter.lastReset.formatted_delta %}Seum thrown by {{ trigram }} {{ time_ago }}.{% endblocktrans %} {% endif %}
{% endif %}

{{ counter.lastReset.reason | hashtag }}

{% endfor %}
{# Graphs #}

{% trans "Timeline of the 24h of the seum" %}{# Timeline des 24 heures du seum #}

{% if noTimeline %}

{% trans "No seum in the last past 24h..." %}

{% else %} {{ line_chart.as_html }} {% endif %}

{% trans "Best seumers" %}

{% if noBestSeum %}

{% trans "Nobody got the seum..." %}

{% else %} {{ best_chart.as_html }} {% endif %}

{% trans "Most liked seumers" %}

{% if noBestLikees %}

{% trans "Nobody liked..." %}

{% else %} {{ likees_chart.as_html }} {% endif %}

{% trans "Most popular hashtags" %}

{% if noBestHashtags %}

{% trans "Nobody used any hashtag..." %}

{% else %} {{ hashtags_chart.as_html }} {% endif %}

{% trans "Best likers of seum" %}

{% if noBestLikers %}

{% trans "Nobody liked..." %}

{% else %} {{ likers_chart.as_html }} {% endif %}

{% trans "Seum activity" %}

{% if noSeumActivity %}

{% trans "Nobody got the seum..." %}

{% else %} {{ activity_chart.as_html }} {% endif %}
{% trans "Logout" %} {% trans "Change password" %} {% if myCounter.email_notifications %} {% trans "Deactivate email notifications" %} {% else %} {% trans "Activate email notifications" %} {% endif %} {% if myCounter.sort_by_score %} {% trans "Sort seums by date" %} {% else %} {% trans "Sort seums by score" %} {% endif %}
{% endblock %}