{% extends "layout.html" %} {% import "macros/_misc.html" as misc %} {% block page_title %}{{current_event.name}} / Print{% endblock %} {% block body_class %}print-page{% endblock %} {% macro render_print_project(project) %}
{% if project.hashtag %}

{{project.hashtag}}

{% endif %}

{% if project.logo_icon %} {% if project.logo_icon|length==1 %} {{project.logo_icon}} {% else %} {% endif %} {% endif %} {{project.name}}

{% if project.summary %}

{{project.summary}}

{% endif %} {% if project.team %} {% endif %}
{% if request.args.get('longtext') and project.longtext %}
~ PITCH ~
{{project.longtext|markdown|safe}}
{% endif %} {% if request.args.get('longtext') and project.autotext %}
~ README ~
{{project.autotext|markdown|safe}}
{% endif %}
{% endmacro %} {% block content %}
{% if current_user and current_user.active %} {% endif %}

Report


💡 Active projects and challenges as of {{ curdate }}.

{% if not request.args.get('longtext') %} Full text {% else %} Hide text {% endif %} CSV Data Package Print

{% for project in projects %} {{ render_print_project(project) }} {% endfor %} {% if challenges.length %}

Challenges

{% for project in challenges %} {{ render_print_project(project) }} {% endfor %} {% endif %}
Return Challenges Stages Categories
{% endblock %}