{% extends "todo/todo_base.html" %} {% block title %} {{ _("Package Tags") }} {% endblock %} {% block content %}
| {{ _("Package") }} | {{ _("Tags") }} | |
|---|---|---|
| {{ package.title }} by {{ package.author.display_name }} | {% if package.check_perm(current_user, "EDIT_PACKAGE") %} {% endif %} | {% for tag in package.tags %} {{ tag.get_translated().title }} {% endfor %} |