{% load base_tags %} {% load perm_tags %} {% load i18n %} {% has_perm request.user stories.change_story story as can_edit %}
{% if story.image %}
{% blocktrans with t=story.title|truncatechars:123 %}{{ t }}{% endblocktrans %}
{% endif %}

{% firstof story.title 'Untitled'%}

{% blocktrans with c=story.content|striptags|truncatewords:20|safe %}{{ c }}{% endblocktrans %} {% if can_edit %} {% if story.full_story_link %}
{% trans "Links to: " %}{{ story.full_story_link }} {% endif %} {% if story.link_title %}
{% trans "Link title: " %} {{ story.link_title }} {% endif %} {% endif %}
{% include "stories/meta.html" %}