{% extends "base.html" %} {% block title %} {{ package.title }} {% endblock %} {% block content %} {% if not package.approved %}
This package needs to be approved before it can be found. {% if package.checkPerm(current_user, "APPROVE_NEW") %}
{% endif %}
{% endif %}

{{ package.title }} by {{ package.author.display_name }}

{{ package.shortDesc }}

{{ package.desc | markdown }}

Releases

Tags

{% if current_user.is_authenticated or requests %}

Edit Requests

{% endif %} {% endblock %}