{% load i18n %} {% comment %} {% endcomment %}

{% trans "Most recent share comments" %}:

{% if controller.mostRecentSharesComments %} {% for cm in controller.mostRecentSharesComments %} {% endfor %}
comment {{ cm.getComment.getOwner.getFullName }} {% trans "commented the" %} {% trans "share" %} {{ cm.link.id }} on {{ cm.getComment.creationEventDate|date:"Y-m-d H:i:s" }}
{% else %}

{% trans "No data commented." %}

{% endif %}

{% trans "Most recent shares" %}:

{% if controller.mostRecentShares %} {% for sh in controller.mostRecentShares %} {% endfor %}
{% trans "share" %} {{ sh.id }} owned by {{ sh.getOwner.getFullName }}
{% else %}

{% trans "No data commented." %}

{% endif %}