X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=templates%2Fpatchwork%2Fbundles.html;fp=templates%2Fpatchwork%2Fbundles.html;h=0000000000000000000000000000000000000000;hb=ad2762cf775a8dde508de47164d6429f3fd724f1;hp=11fb89dc47872d0f325e814204b038b17d584715;hpb=f09e982f58384946111d4157fd2b7c2b31b78612;p=patchwork diff --git a/templates/patchwork/bundles.html b/templates/patchwork/bundles.html deleted file mode 100644 index 11fb89d..0000000 --- a/templates/patchwork/bundles.html +++ /dev/null @@ -1,59 +0,0 @@ -{% extends "base.html" %} - -{% load static %} - -{% block title %}Bundles{% endblock %} -{% block heading %}Bundles{% endblock %} - -{% block body %} - -{% if bundles %} - - - - - - - - -{% for bundle in bundles %} - - - - - - - - - -{% endfor %} -
NameProjectPublic LinkPatches - DownloadDelete
{{ bundle.name }}{{ bundle.project.linkname }} - {% if bundle.public %} - {{ bundle.public_url }} - {% endif %} - {{ bundle.n_patches }}download -
- {% csrf_token %} - {{ 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 %}