{% extends "base.html" %} {% block title -%} prjct Overview — {{ super() }} {%- endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

prjct

{% if PRJCT_ACTIVE_PROJECTS %}

All active projects, with their next action items:

{% for my_project in PRJCT_ACTIVE_PROJECTS | sort %} {% set my_project = my_project.lower() %}
{% if my_project in PRJCT_TODO %} {{- PRJCT_TODO[my_project].split('\n')[1] | replace('
  • ', '') | replace('
  • ', '') -}} {% else -%} — {%- endif %}
    {% endfor %}
    {% endif %} {% if PRJCT_SOMEDAY_PROJECTS %}

    Someday

    All someday/maybe projects, with their next action items:

    {% for my_project in PRJCT_SOMEDAY_PROJECTS | sort %} {% set my_project = my_project.lower() %}
    {% if my_project in PRJCT_TODO %} {{- PRJCT_TODO[my_project].split('\n')[1] | replace('
  • ', '') | replace('
  • ', '') -}} {% else -%} — {%- endif %}
    {% endfor %}
    {% endif %} {% if PRJCT_COMPLETED_PROJECTS %}

    Completed

    All completed/finished projects, with their next action items:

    {% for my_project in PRJCT_COMPLETED_PROJECTS | sort %} {% set my_project = my_project.lower() %}
    {% if my_project in PRJCT_TODO %} {{- PRJCT_TODO[my_project].split('\n')[1] | replace('
  • ', '') | replace('
  • ', '') -}} {% else -%} — {%- endif %}
    {% endfor %}
    {% endif %}
    {% endblock %}