{% extends "todo/todo_base.html" %} {% block title %} {{ _("Package Tags") }} {% endblock %} {% block content %}
{% if only_no_tags %} {{ _("Missing tags only") }} {% else %} {{ _("Missing tags only") }} {% endif %} {% if check_global_perm(current_user, "EDIT_TAGS") %} {{ _("Edit Tags") }} {% endif %}
{% for package in packages %} {% endfor %}
{{ _("Package") }} {{ _("Tags") }}
{{ package.title }} by {{ package.author.display_name }} {% if package.checkPerm(current_user, "EDIT_PACKAGE") %} {% endif %} {% for tag in package.tags %} {{ tag.title }} {% endfor %}
{% endblock %}