diff --git a/progit/static/progit.css b/progit/static/progit.css index 6eb5472..229424b 100644 --- a/progit/static/progit.css +++ b/progit/static/progit.css @@ -424,6 +424,20 @@ th.month .ui-button-text { min-height: 400px; } +.sep { + background: #adadad no-repeat scroll center; + margin:auto; + width:50em; + height:2px; + margin-top:1em; + margin-bottom:1em; +} + .inline h2, .inline a, .inline li{ display: inline-block; } + +#comment { + min-width: 500px; + min-height: 120px; +} diff --git a/progit/templates/issue.html b/progit/templates/issue.html index 23bf4e7..c34367a 100644 --- a/progit/templates/issue.html +++ b/progit/templates/issue.html @@ -30,7 +30,6 @@ {{ render_field_in_list(form.status) }}
  • -
  • {{ form.csrf_token }} @@ -47,6 +46,44 @@ {{ issue.content | rst2html }} {% endautoescape %} +

    + Opened by + + {{ issue.user }} + + on {{ issue.date_created | humanize}} +

    + + +
    + +
    + {% for comment in issue.comments %} + + {% autoescape false %} + {{ comment.comment | rst2html }} + {% endautoescape %} +

    + + {{ comment.user }} + + on {{ comment.date_created | humanize}} +

    +
    + {% endfor %} +
    + +
    + +
    +
    +
    + +
    + {{ form.csrf_token }} + +
    {% endblock %}