{% extends "dashboard_base.html" %} {% load static %} {% load markdown_deux_tags %} {% block extra_js %} {% endblock %} {% block header_title %}Project Directory{% endblock %} {% block content %}

{{object}}

{% if project.technologies.all %}

Built with {% for tech in project.technologies.all %}{{tech}} {% endfor %}

{% endif %}

README

{{project.description|markdown}}

Resources & Links

{% for link in project.link_set.all %}

{{link.title}} {{link.url}}

{% endfor %} {% if user.is_authenticated %}{% if user in project.members.all %}Add a link{% endif %}{% endif %}

Founded on {{project.created|date:"r"}} by {{project.founder.username}}

Members
{% if request.user.is_authenticated %} {% if request.user in project.members.all %}

Leave project

{% endif %} {% if not request.user in project.members.all %}

Join project

{% endif %} {% endif %}
{% with project.members.all as members %} {% include 'honey/_member_list.html' %} {% endwith %}


Public: {{object.public_url}}

{% if project.dev_url %}

Want to help? We use the following URL to manage development of this project

{{object.dev_url}}

{% endif %}
{% if request.user.is_authenticated %} {% if user.is_authenticated %}Edit project{% endif %} {% endif %}

Project buzz {% if user.is_authenticated %}Add more buzz{% endif %}

{% if project.buzz_set.all %} {% for buzz in project.buzz_set.all %}
{{buzz.title}}
{{buzz.description|markdown}}
{% endfor %} {% else %}

There's no buzz about this project, find some fellow workers, and get busy!

{% if user.is_authenticated %}Add some buzz{% endif %}

{% endif %}
{% endblock %}