{% load i18n %}
{% load static %}
{{ object.name }}
{% if object.summary %}
{{ object.summary }}
{% else %}
{% translate "no summary provided yet."|capfirst %}
{% endif %}
{% if object.description %}
{{ object.description }}
{% else %}
{% translate "no description provided yet."|capfirst %}
{% endif %}
{{ object.get_system_display }}
{% if object.is_public %}
{% translate "public"|capfirst %}
{% else %}
{% translate "private"|capfirst %}
{% endif %}
{% if object.discord_channel %}
{{ object.discord_channel.name }}
{% else %}
{% translate "not connected."|capfirst %}
{% if object.start_date %}
{{ object.start_date }}
{% else %}
{% translate "not set."|capfirst %}
{% endif %}
{% if object.end_date %}
{{ object.end_date }}
{% else %}
{% translate "not set."|capfirst %}
{% endif %}
{{ object.total_votes }}
{% translate "general settings"|capfirst %}
{% if user in object.game_masters %}
{{ ICONS.EDIT|safe }}
{% translate "edit"|capfirst %}
{% endif %}
{% translate "name"|capfirst %}
{% translate "short description"|capfirst %}
{% translate "description"|capfirst %}
{% translate "system"|capfirst %}
{% translate "type"|capfirst %}
{% translate "discord channel"|capfirst %}
{% blocktranslate with command='linkchannel' trimmed %}
You can set it up with our bot using '{{ BOT_COMMAND_PREFIX }}{{ command }}' command.
{% endblocktranslate %}
{% endif %}
{% translate "start date"|capfirst %}
{% translate "end date"|capfirst %}
{% translate "votes"|capfirst %}
{{ player.username }} {% if player in campaign.game_masters %} {% endif %} {% if request.user in campaign.game_masters and request.user.pk != player.pk %} {{ ICONS.TRASH|safe }} {% endif %}
{% translate "no players."|capfirst %}