summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/projects.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/projects.html')
-rw-r--r--templates/patchwork/projects.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/templates/patchwork/projects.html b/templates/patchwork/projects.html
deleted file mode 100644
index 8c727ad..0000000
--- a/templates/patchwork/projects.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}Project List{% endblock %}
-{% block heading %}Project List{% endblock %}
-
-{% block body %}
-
-{% if projects %}
- <div class="project-set">
- {% for p in projects %}
- <div class="project">
- <h2 class="project-title">
- <a href="{% url 'patchwork.views.patch.list' project_id=p.linkname %}"
- >{{p.linkname}}</a>
- </h2>
- <div class="project-name">{{p.name}}</div>
-{% if p.web_url %}
- <div class="project-url"><a href="{{p.web_url}}">website</a></div>
-{% endif %}
- </div>
- {% endfor %}
- </div>
-{% else %}
- <p>Patchwork doesn't have any projects to display!</p>
-{% endif %}
-
-{% endblock %}