{% extends "layout.html" %} {% block title %} Issue {{ issue['id'] }} | Hive {% endblock %} {% block body %} Back to Issue List

{{ markdown(issue['title']) |safe }}

{% for label in issue['labels'] %} {{label}} {% endfor %}

{{markdown(issue['body']) | safe}} {% if len(issue['comments']) > 0 %}

Comments:

{{issue['rendered_comments'] | safe}} {% endif %}

 

Back to Issue List

{% endblock %}