{% load i18n %}
{% if action.actor.username %} {{ action.actor }} {% elif action.actor.get_absolute_url %} {{ action.actor }} {% else %} {{ action.actor }} {% endif %}
{{ action.verb }} {% if action.action_object %} {% if action.action_object_template %} {# template is like "app/model_action_teaser.html" #} {% include action.action_object_template with current_object=action.real_target host_template="cyclope/inline_view.html" %} {% else %} {{ action.action_object }} {% endif %} {% endif %}
{% if action.target_template %} {# template is like "app/model_teaser.html" #} {% include action.target_template with current_object=action.real_target host_template="cyclope/inline_view.html" %} {% elif action.target %} {% trans "to" %} {% if action.target.get_absolute_url %}{{ action.target }} {% else %}{{ action.target }}{% endif %} {% endif %}