{% extends "base.html" %} {% block title %}Roadmap{% endblock %} {% block content %}

SneakyScope Roadmap

{% if updated %}

Last updated: {{ updated }}

{% endif %}
{% for t in selected_tags %} {% endfor %} {% if min_priority is not none %} {% endif %} {% if milestone %} {% endif %}
{% for t in all_tags %} {% endfor %}
{% if not items %}
No items match your filters.
{% endif %}
{% for it in items %}

{{ it.title }}

{% if it.priority is not none %} P{{ it.priority }} {% endif %}

{{ it.goal }}

{% for tag in it.tags %} {{ tag }} {% endfor %} {% if it.milestone %} milestone: {{ it.milestone }} {% endif %}
{{ it.id }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}