{% extends "projects/base.html" %} {% load i18n %} {% load uni_form %} {% load avatar_tags %} {% load threadedcommentstags %} {% load pagination_tags %} {% load extra_tagging_tags %} {% load projects_tags %} {% load group_tags %} {% load topics_tags %} {% load wiki_tags %} {% load theme_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 %}
{% avatar member.user 40 %}
{% endif %}

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

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

{{ project.description }}

{% ifequal user project.creator %}

{% trans "Edit details" %}

{{ project_form|as_uni_form }}
{% endifequal %} {% if user.is_authenticated %}
{% if is_member %} {% ifequal user project.creator %}

You are the creator of this project.

{% trans "Add new member" %}

{{ adduser_form|as_uni_form }}

{% silk "delete" %} {% trans "Delete project" %}

{% else %}

You are member of this project.

{% endifequal %} {% else %}

You are not a member of this project. Want to become one?

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

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

{% get_topics_for_group project as topic_queryset %} {% with topic_queryset|slice:":5" as topics %} {% if topics %} {% for topic in topics|slice:":5" %} {% show_topic topic %} {% endfor %}

{% trans "more..." %}

{% else %} {% groupurl topic_list project as new_topic_url %}

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

{% endif %} {% endwith %} {% content_objects project "wiki.Article" as articles %}

{% trans "Wiki Articles" %}{% if articles %} ({{ articles|length }}){% endif %}

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

{% trans "more..." %}

{% else %} {% groupurl wiki_list project as wiki_url %}

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

{% endif %}

{% trans "Tasks" %}

{% groupurl task_list project as tasks_url %}

More here soon but, in the meantime, here's a link to the task list.

{% endif %}
{% endblock %} {% block extra_body %} {% endblock %}