{% extends "base.html" %} {% block title %}{% if current_state == 'TRASHED' %}Trash Bin - ThinkStorm{% else %}Browse Incubating Ideas - ThinkStorm{% endif %}{% endblock %} {% block content %}

{% if current_state == 'TRASHED' %}🗑️ Trash Bin{% else %}Incubation Catalog{% endif %}

{% if current_state == 'TRASHED' %} Discarded submissions and unpromising ideas. Items in trash are retrievable at any time until permanently emptied. {% else %} Explore anonymous submissions, source-backed research dossiers, and claimed work tracks. {% endif %}

Available & Active Available Claimed Active Completed All Ideas 🗑️ Trash {% if trashed_count and trashed_count > 0 %}{{ trashed_count }}{% endif %}
{% if current_state %}{% endif %}
{% if current_state == 'TRASHED' %}

🗑️ Trash Management {{ ideas|length }} item(s)

Items in the trash are withheld from active incubation. You can restore ideas back to their previous state, or permanently empty the trash.

{% if ideas and ideas|length > 0 %} {% endif %}
{% endif %} {% if ideas and ideas|length > 0 %}
{% for idea in ideas %}
{{ idea.id }}
{% if idea.lifecycle_state != 'TRASHED' %}
L{{ idea.enrichment_level }}
{% for i in range(1, 6) %}
{% endfor %}
{% endif %} {{ idea.lifecycle_state }}

{{ idea.title }}

{{ idea.summary }}

{% if idea.tags and idea.tags|length > 0 %}
{% for t in idea.tags %} #{{ t }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
{% if current_state == 'TRASHED' %}

Trash is Empty

There are currently no discarded or trashed ideas.

Browse Active Ideas {% else %}

No ideas found

There are currently no ideas matching the selected filters.

⚡ Submit an Idea {% endif %}
{% endif %} {% endblock %}