{% load base_filters %} {% load story_tags %} {% load base_tags %} {% load i18n %}
{% with story.category_set as story_cat %} {% if story_cat.category %}
{% trans "Category:" %} {{ story_cat.category }} {% if story_cat.sub_category %} | {% trans "Sub Category:" %} {{ story_cat.sub_category }} {% endif %}
{% endif %} {% endwith %} {% if story.tags %}
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 %}
{% trans "Print" %}
{% if user.profile.is_superuser %}
{% endif %}