{% extends "base.html" %} {% block title %}#{{ number }} {{ title }} - {{ owner }}/{{ name }} - Guts{% endblock %} {% block content %}
{{ owner }} / {{ name }} / Issues

{{ title }} #{{ number }}

{% if state == "Open" %} Open {% else %} Closed {% endif %} {{ author }} opened this issue
{{ author }} opened this issue
{% if description_html.is_empty() %}

No description provided.

{% else %} {{ description_html }} {% endif %}

Comments

{% if comments.is_empty() %}

No comments yet

{% else %} {% for comment in comments %}
{{ comment.author }} commented
{{ comment.body_html }}
{% endfor %} {% endif %}
{% if closed_by.is_some() %}
{{ closed_by.as_ref().unwrap() }} closed this issue
{% endif %}

Details

Author

{{ author }}

{% if !labels.is_empty() %}
Labels
{% for label in labels %} {{ label }} {% endfor %}
{% endif %} {% if closed_by.is_some() %}
Closed by

{{ closed_by.as_ref().unwrap() }}

{% endif %}
{% endblock %}