Tags:
{% for tag in story.tags|tag_split %}
{{ tag }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if user.is_authenticated %}
{% if not user.profile.is_superuser %}
{% if user == story.creator or user == story.owner %}
{% trans "Owned by you" %}{% if not story.status_detail == "active" %} - {% trans "status" %}: {{ story.obj_status }}{% endif %}
{% endif %}
{% endif %}
{% if user.profile.is_superuser or user == story.creator or user == story.owner %}
{% meta_creator_owner story %}
{% endif %}
{% endif %}