{% extends 'djangopypi/base.html' %} {% block title %}{{ package.name }}{% endblock %} {% block extra_head %}{% endblock %} {% block content %}

{{ package.name }}

{% if not package.latest %}
No releases yet!
{% endif %} {% if package.latest %} {% with package.latest as release %} {% load safemarkup %} {{ release.description|saferst }} {% if release.distributions.count %}

Downloads

{% endif %} {% endwith %} {% endif %} {% endblock %}