{% extends 'base.html' %} {% load static %} {% load markdown %} {% block title %}{{ project.title }} - Packs Site{% endblock %} {% block content %}
{% if project.thumbnail %} {{ project.title }} {% else %}
{{ project.title|first|upper }}
{% endif %}

{{ project.title }}

{{ project.get_category_display }} #{{ project.pk }}
{% if project.summary %}

{{ project.summary }}

{% endif %}
{{ project.owner.username }} {{ project.downloads }} {{ versions|length }} version{{ versions|length|pluralize }}
{% if can_edit %}
New version Add media Edit {% if request.user == project.owner %} Contributors {% endif %}
{% endif %}
{% if tags %}
{% regroup tags by tag.category as tag_groups %} {% for group in tag_groups %}
{{ group.grouper.name }} {% for link in group.list %} {{ link.tag.name }} {% endfor %}
{% endfor %}
{% endif %}
{% if project.description %}
{{ project.description|markdown }}
{% else %}

No description yet.

{% endif %}

Versions

{% for version in versions %}
{{ version.version_name }} {% if forloop.first %}latest{% endif %}
{{ version.created_at|date:"M j, Y" }} {{ version.downloads }}
{% if version.changelog %}
{{ version.changelog|markdown }}
{% endif %}
{% for vf in version.files.all %}
{% if vf.is_png %} {{ vf.filename }} {% else %} {% endif %} {{ vf.filename }}
{% endfor %}
{% empty %}

No versions yet.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}