{% 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.category == 'modpack' %}{% endif %}
{% if project.category == 'guide' %}
{% if guide_docs %}
{% for doc in guide_docs %} {% endfor %}

Loading…

{% else %}

No guide documents uploaded yet.

{% endif %}
{% elif project.description %}
{{ project.description|markdown }}
{% else %}

No description yet.

{% endif %}

Versions

{% for version in versions %}
{{ version.version_name }} {% if forloop.first %}latest{% endif %} {% if version.pack_format %}pack format {{ version.pack_format }}{% endif %}
{{ version.created_at|date:"M j, Y" }} {{ version.downloads }}
{% if version.pack_description %}

{{ version.pack_description }}

{% endif %} {% if version.changelog %}
{{ version.changelog|markdown }}
{% endif %}
{% for vf in version.files.all %}
{% if vf.is_png %} {{ vf.filename }} {% elif vf.is_markdown %} {% else %} {% endif %} {{ vf.filename }}
{% endfor %}
{% empty %}

No versions yet.

{% endfor %}
{% if project.category == 'modpack' %}

Mods

{% for version in versions %} {% if version.mods_manifest.files %}

{{ version.version_name }} {{ version.mods_manifest.source }}

    {% for mod in version.mods_manifest.files %}
  • {{ mod.name }}
  • {% endfor %}
{% endif %} {% empty %}

No mods detected in the uploaded packs.

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