{% extends "base.html" %} {% load static %} {% block css %} {% endblock %} {% block content %}

Taboo

Taboo is a forum game. Players are given the name of another player and a word or phrase. If they can induce the other player to use that term in their post then the other player will be banned for a short period of time and the surviving player will be given a new target and phrase. Some details:

{% if user.taboo_profile and user.taboo_profile.active %}

You are currently registered. {% if user.taboo_profile.mark %} Your mark is {{ user.taboo_profile.mark.username }}, their phrase is "{{ user.taboo_profile.phrase }}". {% else %} You do not yet have a mark. You'll get a PM when one has been assigned. {% endif %}

If you want to stop participating you may

{% csrf_token %}

{% elif eligible %}
You are not currently registered. If you would like to participate you may
{% csrf_token %}
.
{% else %} You are not currently registered and not eligible to register. {% endif %}
{% endblock %}