{% extends "base/base.html" %} {% load i18n %} {% load list %} {% load misc %} {% block content %}

{{ object.summary }}

{% if object.involved %} {% endif %} {% if object.longterm %} {% endif %}
{% trans "Iniator" %}:{{ object.initiator }}
{% trans "Involved" %}: {{ object.involved|list_or_value }}
{% trans "Long term" %}:{{ object.longterm|yesno|capfirst }}

{{ object.description }}

{# Show all related players, except for the current user #} {% with object.related_players|remove_item:user as players %} {% if players %} {% trans "Note: This influence (and its comments) can also be viewed by:" %} {% endif %} {% endwith %}

{% trans "Comments" %}

{% block comments %} {% include "influences/influence_comments_block.html" %} {% endblock %} {% endblock %}