{% extends "todo/todo_base.html" %} {% block title %} {{ _("%(username)s's to do list", username=user.display_name) }} {% endblock %} {% block content %}

{{ _("Unapproved Packages Needing Action") }}

{% for package in unapproved_packages %}
{% if package %}
{{ package.title }}
{% endif %}
State: {{ package.state.value }}
{% else %}

No outdated packages.

{% endfor %}

{{ _("Outdated Packages") }}

{% from "macros/todo.html" import render_outdated_packages %} {{ render_outdated_packages(outdated_packages) }}

{{ _("Unadded Topics") }}

{% if topics_to_add %}

List of your forum topics which do not have a matching package. Topics with a strikethrough have been marked as discarded.

{% from "macros/topics.html" import render_topics_table %} {{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}
{% else %}

Congrats! You don't have any topics which aren't on CDB.

{% endif %} {% endblock %} {% block scriptextra %} {% endblock %}