From d75517571bf8cbc4185fab71c4235c6d29036a7d Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 20 2014 08:37:35 +0000 Subject: Add the template listing all the issues of a project or fork --- diff --git a/progit/templates/issues.html b/progit/templates/issues.html new file mode 100644 index 0000000..1434a7c --- /dev/null +++ b/progit/templates/issues.html @@ -0,0 +1,36 @@ +{% extends "repo_master.html" %} + +{% block title %}Home{% endblock %} +{%block tag %}home{% endblock %} + + +{% block repo %} + +

Issues

+ +
+ {% if issues %} + + {% else %} +

+ No issues have been opened for this project. +

+ {% endif %} +
+ +{% endblock %}