diff --git a/progit/templates/issue.html b/progit/templates/issue.html new file mode 100644 index 0000000..b26ea24 --- /dev/null +++ b/progit/templates/issue.html @@ -0,0 +1,23 @@ +{% extends "repo_master.html" %} + +{% block title %}Home{% endblock %} +{%block tag %}home{% endblock %} + + +{% block repo %} + +

Issue #{{ issue.id }}

+ +
+

+ {{ issue.title }} +

+ + + {% autoescape false %} + {{ issue.content | rst2html }} + {% endautoescape %} + +
+ +{% endblock %}