{% extends "base.html" %} {% load display typogrify %} {% block content %}

{{ project.name }}


{% if show_edit_row %}
{% if project_role %}

You are a member of this project, with the role: {{ project_role.role }}. You may perform the following actions.

{% endif %}
{% if can_change_roster or can_view_roster %} {% if can_change_roster %}Edit{% else %}View{% endif %} roster {% endif %} {% if can_change_project %} Edit project description {% endif %} {% if can_change_featured_items %} Select featured items {% endif %}
{% endif %}
{% if project.has_description %} {% if project.image %} {% endif %} {{ project.description|as_html|typogrify }} {% else %} no project description {% endif %}
{% with project.featureditem_set.all as featured_items %} {% if featured_items %}

★ Featured items

{% for item in featured_items %} {% endfor %}
{% else %} {% endif %} {% endwith %}

Recent edits

{% include "includes/activity.html" %}
{% endblock %}