{% extends "layout.html" %} {% import "macros/_project.html" as proj %} {% block page_title %}Projects by category{% endblock %} {% block body_class %}eventcategories-page{% endblock %} {% block content %} {% if not current_event.lock_resources %}
{% if current_user and current_user.active %} {% endif %}
{% endif %}

Categories


{% for category in steps %}

{{ category.name }}

{{ category.description|onebox|markdown|safe }}


{% if category.projects_here(current_event.id) %}
{% for project in category.projects_here(current_event.id) %} {{ proj.render_project_card(project) }} {% endfor %}
{% endif %}
{% endfor %} {% if projects %}

*


{% for project in projects %} {{ proj.render_project_card(project) }} {% endfor %}
{% endif %}
Return
{% endblock %}