{% from "macros/_form.html" import render_form %} {% extends "layout.html" %} {% block page_title %}🖄 {{project.name}}{% endblock %} {% block body_class %}projectpost{% endblock %} {% block js %} {% if config.ENV == 'prod' %} {% else %} {% endif %} {% endblock %} {% block content %}

{{project.name}}

{% if (suggestions or stage) and project.progress and project.progress < 50 %} {% if config.LLM_API_KEY and not project.is_challenge %} {% include "includes/projectdialogs.html" %} {% endif %}
{{stage.tip}}
{% if not all_valid %}
{% for item in stage.conditions.validate %} {% if item.valid %}

  {{ item.help }}

{% else %}

  {{ item.help }}

{% endif %} {% endfor %}
{% endif %}
{% if all_valid %} {% endif %}
{% endif %} {% if stage %} {% if all_valid and stage['name'] == 'LIVE' %} {% else %} {% if not all_valid %}
{% endif %} {% endif %} {% endif %} {% if config.S3_KEY %} {% endif %}
{% if stage %} {{ render_form(url_for('project.project_post', project_id=project.id), form, formid='projectPost') }} {% else %} {{ render_form(url_for('project.project_comment', project_id=project.id), form, formid='projectPost') }} {% endif %}
{% if posts %}
{% for s in posts %}
{{s.text|markdown|safe}}
{{s.timesince}} {% if s.author %} ~ {{ s.author }} {% endif %}
{% endfor %}
Log
{% endif %}
Back to Project {% if stage %}
Edit Details
{% endif %}
{% include "includes/uploader.html" %} {% include "includes/pleasewait.html" %}
{{project.event.community_embed|safe}}
{% endblock %}