{% 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 %} {% from "macros/forms.html" import form_scripts %} {% block scriptextra %} {{ form_scripts() }} {% endblock %}