{{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 %}{% if project.public_url %}{% endif %}{% if project.git_url %} {% endif %}
Founded on {{project.created|date:"r"}} by {{project.founder.username}}
Members
{% if request.user.is_authenticated %} {% if request.user in project.members.all %} {% endif %} {% if not request.user in project.members.all %} {% 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
{% 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 %}