{% extends "base.html" %} {% block title %}Bundles{% endblock %} {% block heading %}Bundles{% endblock %} {% block body %} {% if bundles %} {% for bundle in bundles %} {% endfor %}
Name Project Public Link Patches Download Delete
{{ bundle.name }} {{ bundle.project.linkname }} {% if bundle.public %} {{ bundle.public_url }} {% endif %} {{ bundle.n_patches }} download
{{ bundle.delete_form.as_p }}
{% endif %}

Bundles are groups of related patches. You can create bundles by selecting patches from a project, then using the 'create bundle' form to give your bundle a name. Each bundle can be public or private; public bundles are given a persistent URL, based you your username and the name of the bundle. Private bundles are only visible to you.

{% if not bundles %}

You have no bundles.

{% endif %} {% endblock %}