{% extends "projects/base.html" %} {% load zwitschern %} {% load i18n %} {% load gravatar %} {% load wiki %} {% load wikiurl %} {% load threadedcommentstags %} {% load pagination_tags %} {% load shorttimesince_tag %} {% load extra_tagging_tags %} {% load project_tags %} {% block head_title %}{{ project.name }}{% endblock %} {% block body %} {% if user.is_authenticated %}

{% trans "Members" %}

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

Members' Status

{% endif %}

{% trans "Project" %} {{ project.name }}

Slug: {{ project.slug }}
Creator: {{ project.creator }}
Created: {{ project.created|date }}
{% show_tags_for project %}

{{ project.description }}

{% ifequal user project.creator %}

{% trans "Edit details" %}

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

You are the creator of this project.

{% trans "Add new member" %}

{% trans "Delete project" %}

{% else %}

You are member of this project.

{% endifequal %} {% else %}

It is up to the creator of this project ({{ project.creator }}) to add you.

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

Tasks{% if total_tasks %} ({{ total_tasks }}){% endif %}

view more details or add task...

{% for task in tasks %} {% endfor %}
{{ task.summary }} {{ task.modified|shorttimesince }} ago {% if task.assignee %} {{ task.assignee }} {% else %} unassigned {% endif %} {{ task.status }}

Discussion Topics{% if project.topics.all.count %} ({{ project.topics.all.count }}){% endif %}

{% if topics %}

view more details or start new topic...

{% for topic in topics %} {% show_project_topic topic %} {% endfor %} {% else %}

None yet. Start one...

{% endif %}

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

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

more...

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

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

{% endif %} {% if photos %}

Project Photo Pool

{% for photo in photos %} {% endfor %}
{% endif %} {% comment %}

{% trans "Tweets" %}

{% tweet_listing tweets 1 0 %} {% endcomment %} {% endif %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}