{% extends "mobile-layout.html" %} {% macro sentence_case(text) %} {{text[0]|upper}}{{text[1:] }} {% endmacro %} {% block header %}
{{project.title}}

{{ project.tagline }}

{% for tag in project.tags %}
{{tag.title}}
{% endfor %}
{% if not current_user.is_authenticated %}
{{ project.star_count }}
{% elif current_user.id == project.poster.id %}
{{ project.star_count }}
{% elif not current_user.email_confirmed %}
{{ project.star_count }}
{% elif project.gave_star(current_user) %}
{{ project.star_count }}
{% else %}
{{ project.star_count }}
{% endif %}

{{project.comment_count }}

created by {{project.poster.username}}

Posts Activity Team {% if project.can_delete(current_user) %} Settings {% endif %}
{% endblock header %} {% block content %}
{% if project.get_contributors()|length ==0 %}
This project does not yet have any Goal posted an Goal is anything your project needs to be solved to reach its goal
{% endif %} {% for user in project.get_contributors() %}

{{user.username}}

{% if project.poster == user %}

Project Owner

-

{% endif %}
{{user.get_post_count(project.id)}} posts
{% for icon,count in user.get_solution_types('light',project.id).items() recursive %} {% if count != 0 %}
{{count}}
{% endif %} {% endfor %}
{% endfor %}
{% endblock content %}