{% extends "tribes/base.html" %} {% load zwitschern %} {% load i18n %} {% load wiki %} {% load wikiurl %} {% load gravatar %} {% load threadedcommentstags %} {% load pagination_tags %} {% load extra_tagging_tags %} {% load tribe_tags %} {% block head_title %}{{ tribe.name }}{% endblock %} {% block body %} {% if user.is_authenticated %}

{% trans "Members" %}

{% for member in tribe.members.all %} {% if forloop.counter0|divisibleby:"3" %}{% endif %} {% if forloop.counter0|add:"1"|divisibleby:"3" %}{% endif %} {% endfor %} {% if tribe.members.all|length|divisibleby:"3" %}{% else %}{% endif %}
{% gravatar member 40 %}
{% endif %}

{% trans "Tribe" %} {{ tribe.name }}

{% trans "Slug:" %} {{ tribe.slug }}
{% trans "Creator:" %} {{ tribe.creator }}
{% trans "Created:" %} {{ tribe.created|date }}
{% show_tags_for tribe %}

{{ tribe.description }}

{% ifequal user tribe.creator %}

{% trans "Edit details" %}

{% ifequal tribe.members.all.count 1 %}

{% trans "Delete tribe" %}

{% else %}

You are not the only member of the tribe so you can't delete the tribe.

{% endifequal %} {% endifequal %} {% if user.is_authenticated %}
{% if are_member %} {% ifequal user tribe.creator %}

{% trans "You are the creator of this tribe so can't leave (yet)." %}

{% else %} {% endifequal %} {% else %} {% endif %}
{% else %} {% url acct_signup as signup_url %} {% url acct_login as login_url %}

{% blocktrans %}Sign up and log in to join this tribe.{% endblocktrans %}

{% endif %} {% if user.is_authenticated %}

{% trans "Discussion Topics" %}{% if tribe.topics.all.count %} ({{ tribe.topics.all.count }}){% endif %}

{% if topics %} {% for topic in topics %} {% show_tribe_topic topic %} {% endfor %}

{% trans "more..." %}

{% else %} {% url tribe_topics tribe.slug as new_tribe_url %}

{% blocktrans %}None yet. Start one...{% endblocktrans %}

{% endif %}

{% trans "Wiki Articles" %}{% if total_articles %} ({{ total_articles }}){% endif %}

{% if articles %} {% for article in articles %} {% show_teaser article %} {% endfor %}

{% trans "more..." %}

{% else %} {% wikiurl list tribe as wiki_url %}

{% blocktrans %} None yet. Go to the wiki to start a new article. {% endblocktrans %}

{% endif %}

{% trans "Tweets" %}

{% tweet_listing tweets 1 0 %} {% if photos %}

Tribe Photo Pool

{% for photo in photos %} {% endfor %}
{% endif %} {% endif %}
{% endblock %} {% block extra_body %} {% endblock %}