{% extends "base.html" %} {% load humanize %} {% block title %}Releases — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}
{{ release.name }}
{% if release.published_at %} Published {{ release.published_at|timesince }} ago {% else %} Created {{ release.created_at|timesince }} ago {% endif %} {% with asset_count=release.assets.count %} {% if asset_count %} · {{ asset_count }} asset{{ asset_count|pluralize }} {% endif %} {% endwith %}
{% if search %}No releases matching "{{ search }}".{% else %}No releases yet.{% endif %}
{% if has_write and not search %} Create the first release {% endif %}