{% extends "layout.html" %} {% block title %} Issues List | Hive {% endblock %} {% block body %}
Issue {{ issue['id'] }}:
{{ markdown(issue['title']) |safe }}
{% for label in sorted(issue['labels']) %} {{label}} {% endfor %}
Priority: {{ issue['priority'] }}
Comments: {{ len(issue['comments_by_id']) }}
Created by {{issue['author']}} at {{issue['time']}}