{% extends "singlelayout-wide.html" %} {% macro sentence_case(text) %} {{text[0]|upper}}{{text[1:] }} {% endmacro %} {% block header %}
{{ back }}
Share Feedback
{% endblock header %} {% block content %} {% for post in latest %}
{% if post.type== 'project' %}

New project posted by

{{post.poster.username}}

• {{post.elapsed_time()}}

{% elif post.type== 'comment' %}
{{post.get_post().poster.username}}

received a comment in {{post.get_post().project.title}} • {{post.elapsed_time()}}

{{post.star_count}}
"{{post.body}}"
{{post.get_post().star_count}}
{% if post.get_post().type== 'goal' %}

{{post.get_post().description}}

{% elif post.get_post().type== 'solution' %}

{{post.get_post().title}}

{% elif post.get_post().type== 'project' %}

{{post.get_post().title}}

{% endif %}
{% elif post.type== 'goal' %}
{{post.poster.username}}

posted a new goal in

{{post.project.title}} • {{post.elapsed_time()}}

{{post.star_count}}
"{{post.description}}"
{% elif post.type == 'solution' %}
{{post.poster.username}}

posted a new solution

in {{post.project.title}} • {{post.elapsed_time()}}

{{ post.star_count }}
{% if post.attachment_type != SolutionType.Text %}
{{post.title}}
{% endif %}
{{post.description}}
{% if post.attachment_type == SolutionType.Code %}



{% elif post.attachment_type == SolutionType.Photo %}
{% for image in post.images %} {% endfor %}
{% elif post.attachment_type == SolutionType.PDF %} {% elif post.link!=None %}
{% endif %}
{% elif post.type== 'star' %}
{{post.get_post().poster.username}} {% if post.get_post().type != 'project' %}

received a star in {{post.get_post().project.title}} • {{post.elapsed_time()}}

{% else %}

received a star in {{post.get_post().title}} • {{post.elapsed_time()}}

{% endif %}
{% if post.get_post().type== 'comment' %}
{{post.get_post().star_count}}
"{{post.get_post().body}}"
{% endif %} {% if post.get_post().type== 'goal' %}
{{post.get_post().star_count}}
{{post.get_post().description}}
{% endif %} {% if post.get_post().type== 'solution' %}
{{post.get_post().star_count}}
{{post.get_post().title}}
{% endif %} {% if post.get_post().type== 'project' %}
{{post.get_post().star_count}}
{{post.get_post().title}}
{% endif %} {% endif %}
{% endfor %} {% endblock content %}