{% extends "base.html" %} {% load url from future %} {% load cache %} {% load i18n %} {% load package_tags %} {% load pagination_tags %} {% load sorting_tags %} {% block head_title %}{% trans "Welcome" %}{% endblock %} {% block body_class %}home{% endblock %} {% block body %}

{% trans "home" %} / {% trans "categories" %} / {{ category.title_plural }} ( {{ packages.count }} )

{{ category.description }}

{% if profile.can_add_package %} {% trans "add package ยป" %} {% endif %}

{% autosort packages %} {% autopaginate packages %} {% paginate %} {% for package in packages %} {% endfor %}
{% anchor usage_count "# Using This" %} {% trans "Development Status" %} {% anchor title "Name" %} {% trans "Commits" %} {% trans "Version" %} {% anchor repo_watchers "Watchers" %} {% anchor repo_forks "Forks" %}
{% usage_button %}   {{ package.usage_count }} {{ package.last_released.pretty_status }} {{ package.title }} {{ package.pypi_version }} {{ package.repo_watchers }} {{ package.repo_forks }}
{% paginate %} {% endblock %}