{% extends "base.html" %} {% block title %}Release Downloads — {{ bbs_name }}{% endblock %} {% block head %} {{ super() if super }} {% endblock %} {% block content %}

Release Downloads

Releases, updates, and utilities from {{ bbs_name }}. Files are listed newest-first.

{% if current_user.is_authenticated and current_user.is_admin %}
{{ base_dir }}
Drop files in that directory to make them appear here.
{% endif %}
{% if not entries %}

No downloads available yet

{% if current_user.is_authenticated and current_user.is_admin %}

Drop a release into {{ base_dir }} and refresh — it will show up here automatically.

{% else %}

The sysop hasn't posted any releases yet. Check back soon.

{% endif %}
{% else %}
{% for e in entries %} {% endfor %}
File Size Modified  
{{ e.name }}
{{ e.mime }}
{{ e.size_h }} {{ e.mtime_iso }} Download
{% endif %} {% endblock %}