From: Matthijs Kooijman <matthijs@stdin.nl> Date: Fri, 16 Jan 2009 21:25:18 +0000 (+0100) Subject: List the users that can view an Influence. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=a974141892f10ff9f89908d878d1246f3983fe66;p=matthijs%2Fprojects%2Fxerxes.git List the users that can view an Influence. --- diff --git a/templates/influences/influence_detail.html b/templates/influences/influence_detail.html index ac3235c..5c50b67 100644 --- a/templates/influences/influence_detail.html +++ b/templates/influences/influence_detail.html @@ -1,6 +1,7 @@ {% extends "base/base.html" %} {% load i18n %} {% load list %} +{% load misc %} {% block content %} <h1>{{ object.summary }}</h1> @@ -15,7 +16,17 @@ {% endif %} </table> <p>{{ object.description }}</p> - +{# 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:" %} + <ul> + {% for player, chars in players.items %} + <li>{{ player }} ({% trans "player of" %} {{ chars|natural_list }})</li> + {% endfor %} + </ul> + {% endif %} +{% endwith %} <h2>{% trans "Comments" %}</h2> {% block comments %} {% include "influences/influence_comments_block.html" %}